babel-plugin-react-bootstrap
Install
$ npm i --save-dev babel-plugin-react-bootstrap
Example
Transformsimport { Button } from 'react-bootstrap';
roughly to
import Button from 'react-bootstrap/lib/Button';
Usage
.babelrc
{
"plugins": ["react-bootstrap"],
"presets": ["es2015"]
}