Files
AstralRinth/apps/knossos/pages/dashboard/reports.vue

17 lines
321 B
Vue

<template>
<div>
<section class="universal-card">
<h2>Reports</h2>
<ReportsList :auth="auth" />
</section>
</div>
</template>
<script setup>
import ReportsList from '~/components/ui/report/ReportsList.vue'
const auth = await useAuth()
useHead({
title: 'Active reports - Modrinth',
})
</script>