Spaces:
Sleeping
Sleeping
File size: 168 Bytes
76fdff4 |
1 2 3 4 5 6 7 8 9 |
import { nanoid } from '@/lib/utils'
import { Chat } from '@/components/chat'
export default function IndexPage() {
const id = nanoid()
return <Chat id={id} />
}
|