Files
JJ Kasper a92a5caec2 Update test set-up to leverage playwright when able to (#28634)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2021-09-13 14:36:25 +02:00

11 lines
159 B
JavaScript

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