Skip to content

Instantly share code, notes, and snippets.

@subhakundu
Last active June 5, 2021 07:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save subhakundu/15e103ce9dea25c4817ed012740729ff to your computer and use it in GitHub Desktop.
Save subhakundu/15e103ce9dea25c4817ed012740729ff to your computer and use it in GitHub Desktop.
Sample React Component
const NavBar = (props) => {
return (
<div className="container">
<Logo />
<NavMenuItems>
<NavMenuItem>Our Products<NavMenuItem/>
<NavMenuItem>About Us<NavMenuItem/>
<NavMenuItem>Contact Us<NavMenuItem/>
<NavMenuItems/>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment