Skip to content

Instantly share code, notes, and snippets.

@imdongchen
Created October 2, 2018 14:53
Show Gist options
  • Save imdongchen/d084dcf15f6ab4f631fb92f116441af0 to your computer and use it in GitHub Desktop.
Save imdongchen/d084dcf15f6ab4f631fb92f116441af0 to your computer and use it in GitHub Desktop.
function handleClick() { /* do something */ }
function MyComponent() {
return (
<InnerComponent title={title} onClick={handleClick} /> // the click handler is the same reference
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment