Answers for "bootstrap react"

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
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
10

install boostrap react

npm install react-bootstrap bootstrap
Posted by: Guest on April-22-2020
4

react bootstrap

// Install react-bootstrap and bootstrap module 
npm i react-bootstrap bootstrap

// Import bootstrap so that the styles work
import 'bootstrap/dist/css/bootstrap.min.css';

// Use react-bootstrap
import { Button } from 'react-bootstrap'

{ // Some Component
  <Button /> // Displays a nice blue button :)
}
Posted by: Guest on February-18-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
-1

bootstrap react

npm install bootstrap 
import 'boottrap/dist/css/bootstrap.min.css'
Posted by: Guest on June-29-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language