mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
a92a5caec2
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
6 lines
144 B
JavaScript
6 lines
144 B
JavaScript
import dynamic from 'next/dynamic'
|
|
|
|
const DynamicComponent = dynamic(() => import('../../components/nested1'))
|
|
|
|
export default DynamicComponent
|