chatbot-template/app/page.tsx

9 lines
178 B
TypeScript
Raw Normal View History

import { Chat } from '@/components/chat'
2023-05-19 12:33:56 -04:00
// export const runtime = 'edge'
2023-06-02 15:33:48 -04:00
export const preferredRegion = 'home'
2023-05-19 12:33:56 -04:00
export default async function IndexPage() {
return <Chat />
2023-05-19 12:33:56 -04:00
}