Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Created August 9, 2021 06:11
Show Gist options
  • Save percybolmer/38bf17c47d0f9badfd202c6e38bf408a to your computer and use it in GitHub Desktop.
Save percybolmer/38bf17c47d0f9badfd202c6e38bf408a 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={{
pathname: "/profile/percybolmer",
state: { registrationdate: "2021-07-07" },
}}>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