mirror of
https://github.com/zhigang1992/react.git
synced 2026-04-26 23:04:55 +08:00
6 lines
168 B
TypeScript
6 lines
168 B
TypeScript
import dynamic from 'next/dynamic'
|
|
|
|
const DynamicPlaygroundWithNoSSR = dynamic(() => import('./playground'), { ssr: false })
|
|
|
|
export default DynamicPlaygroundWithNoSSR
|