MingruiZhang's picture
check in
76fdff4
raw
history blame
168 Bytes
import { nanoid } from '@/lib/utils'
import { Chat } from '@/components/chat'
export default function IndexPage() {
const id = nanoid()
return <Chat id={id} />
}