rsnext/packages/next/build/swc/tests/fixture/next-dynamic/member-with-same-name/input.js

6 lines
200 B
JavaScript
Raw Normal View History

import dynamic from 'next/dynamic'
import somethingElse from 'something-else'
const DynamicComponent = dynamic(() => import('../components/hello'))
somethingElse.dynamic('should not be transformed')