/** * Copyright (c) 2025 favewa * SPDX-License-Identifier: AGPL-3.0-or-later */ import { Report } from "../utils/atproto.ts"; export interface ReportsProps { reports: Report[]; } export default function Reports({ reports }: ReportsProps) { return ( <>

$reports

thoughts, ramblings, and occasional coherence

); }