Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
'use client'
import dynamic from 'next/dynamic'
const DynamicComponent = dynamic(
() => import('../csr').then((mod) => mod.CSR),
{
ssr: false,
}
)
export default function Client() {
return (
<div>
<DynamicComponent />
</div>
)
}
export const runtime = 'edge'