chatbot-template/app/(chat)/page.tsx

8 lines
221 B
TypeScript
Raw Normal View History

2024-10-11 18:00:22 +05:30
import { Chat } from "@/components/custom/chat";
import { generateUUID } from "@/lib/utils";
2023-05-19 12:33:56 -04:00
2024-10-11 18:00:22 +05:30
export default async function Page() {
const id = generateUUID();
return <Chat key={id} id={id} initialMessages={[]} />;
2023-05-19 12:33:56 -04:00
}