component react bootstrap code example
Example 1: 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 2: react bootstrap
{/* The following line can be included in your src/index.js or App.js file*/}
import 'bootstrap/dist/css/bootstrap.min.css';