Modulo makers3d desarrollado con codex V 0.0.1
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user