Since create-react-app hides Webpack config without having to use eject
, if I want to use something like reactstrap or react-bootstrap, should I eject or will I be
There is a project called 'reactstrap' https://reactstrap.github.io/ which has all the steps you need to integrate Bootstrap with React
npm install bootstrap --save
npm install --save reactstrap react react-dom
Import Bootstrap CSS in the src/index.js file:
import 'bootstrap/dist/css/bootstrap.min.css';
Import required reactstrap components within src/App.js file or your custom component files:
import { Button } from 'reactstrap';