React-bootstrap Not Allowing `import {components}` Syntax
This is kinda weird. It works with other projects, but not with React-Bootstrap. For example; import {Jumbotron, Button} from 'react-bootstrap'; import * as ReactBootstrap from 're
Solution 1:
react-bootstrap
currently don't support ES6 modules natively.
In other words, you need to do some work to be able to use ES6 imports. One way is to use a transpiler like Babel that will transpile your code from ES6 to CommonJS modules.
Post a Comment for "React-bootstrap Not Allowing `import {components}` Syntax"