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

$reports [rss ]

thoughts, ramblings, and occasional coherence

); }