rsnext/test/integration/next-dynamic/components/two.js
2019-06-18 16:52:02 -04:00

6 lines
160 B
JavaScript

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