I\'m playing around with React and ES6 using babel and webpack. I want to build several components in different files, im
React
ES6
babel
webpack
Wrapping components with braces if no default exports:
import {MyNavbar} from './comp/my-navbar.jsx';
or import multiple components from single module file
import {MyNavbar1, MyNavbar2} from './module';