Skip to content

Instantly share code, notes, and snippets.

@Yamo93
Last active July 18, 2022 16:15
Show Gist options
  • Save Yamo93/94ac81d4c2d24d8d765c03d46f33b39f to your computer and use it in GitHub Desktop.
Save Yamo93/94ac81d4c2d24d8d765c03d46f33b39f to your computer and use it in GitHub Desktop.
function Parent () {
function save () {
// save the value of the child
}
return (
<>
<Child type="checkbox" />
<button onClick={save}>Save</button>
</>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment