Answers for "react and bootstrap"

95

add bootstrap to react

//1.run following commnad in cmd:
npm install bootstrap --save
//you can now use bootstrap component. example:
import { Button } from 'react-bootstrap';

//2.or  add this to index.js:
<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
  integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l"
  crossorigin="anonymous"
/>
Posted by: Guest on August-27-2020
19

react import bootstrap css

{/* The following line can be included in your src/index.js or App.js file*/}

import 'bootstrap/dist/css/bootstrap.min.css';
Posted by: Guest on March-23-2020
10

react and bootstrap

npm install react-bootstrap bootstrap
Posted by: Guest on April-22-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
1

react js bootstrap

In public/index.html add css at the top:
<link
        rel="stylesheet"
        href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
        integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU"
        crossorigin="anonymous"
/>
and also at this page bottom add scripts to run bootstrap javascript:
<script src="https://unpkg.com/react/umd/react.production.min.js" crossorigin></script>

<script src="https://unpkg.com/react-dom/umd/react-dom.production.min.js"
  crossorigin></script>

<script src="https://unpkg.com/react-bootstrap@next/dist/react-bootstrap.min.js"
  crossorigin></script>
Posted by: Guest on October-07-2021
1

react bootstrap

1.run following commnad in cmd:
npm install bootstrap --save

2.after install add this to index.js:
import 'bootstrap/dist/css/bootstrap.min.css';
Posted by: Guest on June-13-2021

Code answers related to "react and bootstrap"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language