Files
AstralRinth/apps/frontend/src/pages/dashboard/reports.vue
Evan Song dab284f339 Frontend Tailwind Fixes + Small Fixes (#1258)
* Fix Tailwind not targeting the src dir

* Merge tw fixes

* Fix footer logo alignment in mobile layout
2024-07-07 18:28:55 -07:00

17 lines
341 B
Vue

<template>
<div>
<section class="universal-card">
<h2 class="text-2xl">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>