How to integrate React Bootstrap in React-starter-kit

Integrating React Bootstrap in the React Starter kit is quite easy. The first step is to install React-Bootstrap: npm install –save react-bootstrap After that, the module can be used in your components. Example: ./src/components/Header/Header.js: import Grid from ‘react-bootstrap/lib/Grid’; import Col from ‘react-bootstrap/lib/Col’; function Header() { return ( <Grid className={s.root}> <Col md={4}> <Navigation […]