bingo / src /app /page.tsx
Awaaaaa's picture
Duplicate from hf4all/bingo
d9b6e9f
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 />
</>
)
}