web/routes/reports/index.tsx
2025-11-07 22:01:15 -03:00

18 lines
398 B
TypeScript

/**
* Copyright (c) 2025 favewa
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import Reports from "@/components/Reports.tsx";
import Links from "@/components/Links.tsx";
import { getCachedReports } from "@/utils/atproto.ts";
import "@/assets/report.css";
export default function Page() {
return (
<>
<Links selected="reports" />
<Reports reports={getCachedReports()} />
</>
);
}