File size: 149 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import dynamic from 'next/dynamic'
const PureClient = dynamic(import('../../components/pure-client'), {
ssr: false,
})
export default PureClient
|
1e92f2d |
1 2 3 4 5 6 7 8 |
import dynamic from 'next/dynamic'
const PureClient = dynamic(import('../../components/pure-client'), {
ssr: false,
})
export default PureClient
|