export {default as Module} from './Module/Module';
is the standard ES6 way, as long as you don't need Module
to also be available inside the module doing the exporting.
export Module from './Module/Module';
is a proposed ESnext way to do it, but that only works if you've enabled it in Babel for now.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…