Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kivircik-parantez/f34df2ba3582ad43a5751e4a2f8fd376 to your computer and use it in GitHub Desktop.
Save kivircik-parantez/f34df2ba3582ad43a5751e4a2f8fd376 to your computer and use it in GitHub Desktop.
Component is fully controlled by its parent
// ✅ Also good: the component is fully controlled by its parent
function Toggle({ isOn, onChange }) {
function handleClick() {
onChange(!isOn);
}
function handleDragEnd(e) {
if (isCloserToRightEdge(e)) {
onChange(true);
} else {
onChange(false);
}
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment