import AccountClient from "../../../components/AccountClient"; export default async function AccountInboxDetailPage({ params }: { params: Promise<{ id: string }>; }) { const { id } = await params; return (
); }