Answers for "npm install bootstrap and react-bootstrap doesn't work"

2

how to install bootstrap in react

npm install bootstrap --save // Inside of your command line

import 'bootstrap/dist/css/bootstrap.min.css'; // Inside of your index.js
Posted by: Guest on February-17-2021
0

install bootstrap in react

yarn add bootstrap # install bootstrap
# import bootstrap for use
import 'bootstrap/dist/css/bootstrap.min.css';
import 'bootstrap/dist/js/bootstrap.bundle.min';
Posted by: Guest on February-06-2022

Code answers related to "npm install bootstrap and react-bootstrap doesn't work"

Code answers related to "Javascript"

Browse Popular Code Answers by Language