bootdstrap react header code example
Example 1: reactboostrap navbar responsive
import React from 'react'
import {
BrowserRouter as Router,
Switch,
Route,
useParams,
} from "react-router-dom";
import { Navbar,Nav,NavDropdown,Form,FormControl,Button } from 'react-bootstrap'
import Home from './Home';
import AboutUs from './AboutUs';
import ContactUs from './ContactUs';
class BootstrapNavbar extends React.Component{
render(){
return(
React Bootstrap Navbar
)
}
}
export default BootstrapNavbar;
Example 2: move navbar items to right with reactbootstrap
Navbar
//
// just change the margin-right(mr-auto) to margin-left(ml-auto)
// This should be working fine