How to import and export components using React + ES6 + webpack?

后端 未结 6 1602
隐瞒了意图╮
隐瞒了意图╮ 2020-11-28 19:23

I\'m playing around with React and ES6 using babel and webpack. I want to build several components in different files, im

6条回答
  •  自闭症患者
    2020-11-28 19:44

    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';
    

提交回复
热议问题