chatbot-template/app/page.tsx
2023-11-26 18:30:48 -06:00

8 lines
168 B
TypeScript

import { nanoid } from '@/lib/utils'
import { Chat } from '@/components/chat'
export default function IndexPage() {
const id = nanoid()
return <Chat id={id} />
}