2019-11-28 17:38:44 +01:00

17 lines
302 B
Vue

<template>
<ds-card space="small">
<ds-heading tag="h3">{{ $t('moderation.reports.name') }}</ds-heading>
<report-list />
</ds-card>
</template>
<script>
import ReportList from '~/components/features/ReportList/ReportList'
export default {
components: {
ReportList,
},
}
</script>