Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Created August 7, 2021 12:32
Show Gist options
  • Save percybolmer/7bedef9ea5017619628b57cc10087f8b to your computer and use it in GitHub Desktop.
Save percybolmer/7bedef9ea5017619628b57cc10087f8b 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>
</ul>
</div>
)
}
export default Navbar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment