chatbot-template/app/page.tsx

11 lines
199 B
TypeScript
Raw Normal View History

2023-06-15 11:31:03 +04:00
import { nanoid } from '@/lib/utils'
import { Chat } from '@/components/chat'
2023-05-19 12:33:56 -04:00
2023-06-16 11:49:14 -04:00
export const runtime = 'edge'
2023-05-19 12:33:56 -04:00
2023-06-15 11:31:03 +04:00
export default function IndexPage() {
const id = nanoid()
2023-06-15 16:07:03 +04:00
return <Chat id={id} />
2023-05-19 12:33:56 -04:00
}