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>
11 lines
159 B
JavaScript
11 lines
159 B
JavaScript
import dynamic from 'next/dynamic'
|
|
|
|
const Nested2 = dynamic(() => import('./nested2'))
|
|
|
|
export default () => (
|
|
<div>
|
|
Nested 1
|
|
<Nested2 />
|
|
</div>
|
|
)
|