File size: 200 Bytes
1e92f2d |
1 2 3 4 5 6 |
import dynamic from 'next/dynamic'
import somethingElse from 'something-else'
const DynamicComponent = dynamic(() => import('../components/hello'))
somethingElse.dynamic('should not be transformed')
|