// before
module.exports = require('./inner.js');
// nowadays
export default from './inner.js';
i'm trying to do this, but babel allow it only in es7 stage 1 as it is proposal for now. So for now, im stick to these two lines:
import sticker from './box-sticker.jsx';
export default sticker;
Can I shorter them to one?