react bootstap code example

Example 1: install react bootstrap

# with npm
npm install react-bootstrap bootstrap

#with yarn
yarn add react-bootstrap bootstrap

Example 2: install react bootstrap

npm install react-bootstrap bootstrap

Example 3: 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 :)
}

Example 4: install bootstrap in react

//Install
npm install bootstrap popper jquery

//Import 
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap/dist/js/bootstrap.bundle'

Tags:

Css Example