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

9 lines
168 B
TypeScript
Raw Normal View History

2023-06-15 11:31:03 +04:00
import { nanoid } from '@/lib/utils'
import { Chat } from '@/components/chat'
2023-05-19 12:33:56 -04:00
2023-06-15 11:31:03 +04:00
export default function IndexPage() {
const id = nanoid()
2023-06-15 16:07:03 +04:00
return <Chat id={id} />
2023-05-19 12:33:56 -04:00
}