Skip to content

Instantly share code, notes, and snippets.

@chiefGui
Created February 22, 2017 15:46
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 chiefGui/8b3105ebf20b843a032a97600f9051e9 to your computer and use it in GitHub Desktop.
Save chiefGui/8b3105ebf20b843a032a97600f9051e9 to your computer and use it in GitHub Desktop.
import React from 'react'
const Dropdown = ({onClickRegisterButton}) => (
<ul>
<li>One</li>
<li onClick={onClickRegisterButton}>Two</li>
<li>Three</li>
</ul>
)
export default Dropdown
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment