Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Created August 7, 2021 06:22
Show Gist options
  • Save percybolmer/556d5a270612ec8139cefd8da826d8f3 to your computer and use it in GitHub Desktop.
Save percybolmer/556d5a270612ec8139cefd8da826d8f3 to your computer and use it in GitHub Desktop.
function Navbar() {
return (
<div className="navbar">
<h1>Navbar</h1>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">about</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</div>
)
}
export default Navbar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment