import { SentStatus } from './sent-status'; export default async function SentPage({ searchParams, }: { searchParams: Promise<{ cid?: string }>; }) { const { cid } = await searchParams; return ; }