Files
AstralRinth/apps/frontend/src/pages/dashboard/reports.vue
Evan Song abec2e48d4 Add TailwindCSS (#1252)
* Setup TailwindCSS

* Fully setup configuration

* Refactor some tailwind variables
2024-07-06 20:57:32 -07:00

17 lines
324 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>