mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
17 lines
302 B
Vue
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>
|