I have installed react-bootstrap with npm (npm install react-bootstrap --save) but my code is not rendering on the browser. The page is just blank. I use webpack for builds and babel for transpilation. Below is my react code.
import React from 'react'
import ReactDOM from 'react-dom'
import ReactBootstrap from 'react-bootstrap'
const buttonsInstance = (
<ButtonToolbar>
<Button bsStyle="primary" bsSize="large" active>Primary button</Button>
<Button bsSize="large" active>Button</Button>
</ButtonToolbar>
);
ReactDOM.render(buttonsInstance, document.getElementById('root'));
Thanks!