| import dynamic from 'next/dynamic' | |
| const Nested2 = dynamic(() => import('./nested2')) | |
| export default () => ( | |
| <div> | |
| Nested 1 | |
| <Nested2 /> | |
| </div> | |
| ) | |
| import dynamic from 'next/dynamic' | |
| const Nested2 = dynamic(() => import('./nested2')) | |
| export default () => ( | |
| <div> | |
| Nested 1 | |
| <Nested2 /> | |
| </div> | |
| ) | |