Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Created August 7, 2021 12:59
Show Gist options
  • Save percybolmer/a848ac784787cdeea0f0593d3fd58e4c to your computer and use it in GitHub Desktop.
Save percybolmer/a848ac784787cdeea0f0593d3fd58e4c to your computer and use it in GitHub Desktop.
import { NavLink } from "react-router-dom";
function Navbar() {
return (
<div className="navbar">
<h1>Navbar</h1>
<ul>
<li><NavLink exact to="/">Home</NavLink></li>
<li><NavLink to="/contact">Contact</NavLink></li>
<li><NavLink to="/about">About</NavLink></li>
<li><NavLink to="/profile/percybolmer">Profile</NavLink></li>
</ul>
</div>
)
}
export default Navbar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment