Back

How to Active Navbar Link in React Js

Copy Below Code View As A Text File Show Text Only Show API Edit Code
                            

Step 1 - Add link like below import {NavLink} from 'react-router-dom' Step 2 - <NavLink activeClassName="active" className="nav-link" to="/staff" exact={true}>Staff</NavLink > Note: We use NavLink for this because Link does not support active property. Chill :)