chatbot-template/app/page.tsx
2023-06-16 11:49:14 -04:00

10 lines
199 B
TypeScript

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