Created
March 10, 2022 20:15
-
-
Save onosendi/322a0d0b570667c6f15311ca81808d64 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Child({ onClick }) { | |
return <button onClick={onClick} type="button">Child Button</button>; | |
} | |
export default function Parent() { | |
const onClick = () => { | |
console.log('I\'m in the parent, but the child was clicked'); | |
}; | |
return ( | |
<> | |
<p>Parent content</p> | |
<Child onClick={onClick} /> | |
</> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment