I am newb to reactjs, I want to include bootstrap in my react app
I have installed bootstrap by npm install bootstrap --save
npm install bootstrap --save
Now, want to load b
npm install --save bootstrap
and add this import statement into your index.js file
import '../node_modules/bootstrap/dist/css/bootstrap.min.css';
or You could simply add CDN in your index.html file.