Skip to content

Instantly share code, notes, and snippets.

@emmabostian
Created January 12, 2020 09:36
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 emmabostian/b8ffce100ececce72419798863968b44 to your computer and use it in GitHub Desktop.
Save emmabostian/b8ffce100ececce72419798863968b44 to your computer and use it in GitHub Desktop.
export const MenuFull = ({ style }) => (
<animated.div className="menu menu--full" style={style}>
<nav>
<ul className="menu-list menu-list--full">
<li className="menu-list-item menu-list-item--full">
<a href="/">Home</a>
</li>
<li className="menu-list-item menu-list-item--full">
<a href="/">About</a>
</li>
<li className="menu-list-item menu-list-item--full">
<a href="/">Work</a>
</li>
<li className="menu-list-item menu-list-item--full">
<a href="/">Contact</a>
</li>
</ul>
</nav>
</animated.div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment