Skip to content

Instantly share code, notes, and snippets.

@yjose
Created February 19, 2018 21:52
Show Gist options
  • Save yjose/464f944db0e07c645a476c4445e37e30 to your computer and use it in GitHub Desktop.
Save yjose/464f944db0e07c645a476c4445e37e30 to your computer and use it in GitHub Desktop.
mport React from "react";
export default ({ close }) => (
<div className="menu">
<ul>
<li onClick={close}>Home</li>
<li onClick={close}>Getting Started</li>
<li onClick={close}>Component API</li>
<li onClick={close}>Use Case - Tooltip</li>
<li onClick={close}>Use Case - Modal</li>
<li onClick={close}>Use Case - Menu</li>
<li onClick={close}>Contributing</li>
</ul>
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment