chatbot-template/app/(chat)/page.tsx
2024-10-11 18:00:22 +05:30

7 lines
221 B
TypeScript

import { Chat } from "@/components/custom/chat";
import { generateUUID } from "@/lib/utils";
export default async function Page() {
const id = generateUUID();
return <Chat key={id} id={id} initialMessages={[]} />;
}