b91e262
1
2
3
4
5
6
7
8
9
10
11
import dynamic from 'next/dynamic' const Nested2 = dynamic(() => import('./nested2')) export default () => ( <div> Nested 1 <Nested2 /> </div> )