adam_bing_ai / src /app /page.tsx
Adam555's picture
Duplicate from hf4all/bingo
a781219
raw
history blame contribute delete
285 Bytes
import dynamic from 'next/dynamic'
const DynamicComponentWithNoSSR = dynamic(
() => import('../components/chat'),
{ ssr: false }
)
export default function IndexPage() {
return (
<>
<div className="loading-spinner" />
<DynamicComponentWithNoSSR />
</>
)
}