Last active
June 5, 2021 07:48
-
-
Save subhakundu/15e103ce9dea25c4817ed012740729ff to your computer and use it in GitHub Desktop.
Sample React Component
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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