16 lines
344 B
TypeScript
16 lines
344 B
TypeScript
import AccountClient from "../../../components/AccountClient";
|
|
|
|
export default async function AccountInboxDetailPage({
|
|
params
|
|
}: {
|
|
params: Promise<{ id: string }>;
|
|
}) {
|
|
const { id } = await params;
|
|
|
|
return (
|
|
<main className="page-shell workspace-page">
|
|
<AccountClient section="inbox" conversationId={id} />
|
|
</main>
|
|
);
|
|
}
|