18 lines
398 B
TypeScript
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()} />
|
|
</>
|
|
);
|
|
}
|