Answers for "bootstrap 4 react js"

2

install react bootstrap

# with npm
npm install react-bootstrap bootstrap

#with yarn
yarn add react-bootstrap bootstrap
Posted by: Guest on October-08-2020
0

bootstrap in react

1. install react-bootstrap

                npm install react-bootstrap bootstrap


     2. import css file in your index.js or app.js

                import 'bootstrap/dist/css/bootstrap.min.css';

             <link
              rel="stylesheet"
              href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
              integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
              crossorigin="anonymous"
             />

      3. import components like

                import { Button } from 'react-bootstrap';
Posted by: Guest on July-31-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language