rsnext/test/integration/next-dynamic-lazy-compilation/components/two.js

7 lines
160 B
JavaScript
Raw Normal View History

import something from '../apples'
export default () => {
// have to do something with module so it is not tree shaken
console.log(something)
return '2'
}