next.js/test/e2e/app-dir/app-external/app/mixed/dynamic/page.js
page.js13 lines216 B
'use client'

import dynamic from 'next/dynamic'

const Dynamic = dynamic(
  () => import('mixed-syntax-esm').then((mod) => mod.Component),
  { ssr: false }
)

export default function Page() {
  return <Dynamic />
}
Quest for Codev2.0.0
/
SIGN IN