chat-indic-ui / src /app /page.tsx
sam2ai's picture
Synced repo using 'sync_with_huggingface' Github Action
0971cc4 verified
raw
history blame contribute delete
249 Bytes
"use client";
import React from "react";
import ChatPage from "@/components/chat/chat-page";
export default function Home() {
const [chatId, setChatId] = React.useState<string>("");
return <ChatPage chatId={chatId} setChatId={setChatId} />;
}