chatbot-template/app/page.tsx
2023-06-15 16:07:03 +04:00

11 lines
240 B
TypeScript

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