next.js/test/e2e/app-dir/actions/app/dynamic-csr/page.js
page.js16 lines249 B
'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>
  )
}
Quest for Codev2.0.0
/
SIGN IN