Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save szaranger/e36addb4464098e54cc05168f4820342 to your computer and use it in GitHub Desktop.
Save szaranger/e36addb4464098e54cc05168f4820342 to your computer and use it in GitHub Desktop.
function ParentComponent() {
function handleClick() {
console.log('clicked inside child component');
}
return <ChildComponent onClick={handleClick} />
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment