Skip to content

Instantly share code, notes, and snippets.

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 strarsis/ff53bf3db7b21eba23e1ce46c4c7a935 to your computer and use it in GitHub Desktop.
Save strarsis/ff53bf3db7b21eba23e1ce46c4c7a935 to your computer and use it in GitHub Desktop.
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