rsnext/test/integration/next-dynamic/components/one.js

7 lines
160 B
JavaScript
Raw Normal View History

2019-06-18 22:52:02 +02:00
import something from '../apples'
export default () => {
// have to do something with module so it is not tree shaken
console.log(something)
return '1'
}