Got a job with styleMaps , specifying in my root component:
With bootstrap reaction 0.23.7
import {styleMaps} from 'react-bootstrap'; styleMaps.addStyle('facebook');
EDIT:
Now with reaction-bootstrap 0.30.x
import {addStyle} from 'react-bootstrap/lib/utils/bootstrapUtils'; import Button from 'react-bootstrap/lib/Button'; addStyle(Button, 'facebook');
EDIT 2:
White Papers: Custom Styles
EDIT 3:
When I transferred my setup from the browser to webpack2, it no longer worked with this syntax, changing it to this:
// import Button from 'react-bootstrap/lib/Button'; // previous import {Button} from 'react-bootstrap';
source share