Skip to content

Instantly share code, notes, and snippets.

@onosendi
Created March 10, 2022 20:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save onosendi/322a0d0b570667c6f15311ca81808d64 to your computer and use it in GitHub Desktop.
Save onosendi/322a0d0b570667c6f15311ca81808d64 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