Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created May 17, 2020 18:01
Show Gist options
  • Save jsmanifest/94bd45f0bb4da97ddab02a77087860d5 to your computer and use it in GitHub Desktop.
Save jsmanifest/94bd45f0bb4da97ddab02a77087860d5 to your computer and use it in GitHub Desktop.
function MyInput({ value, onChange: onChangeProp }) {
function onChange(e) {
onChangeProp(e)
}
return (
<div>
<input type='text' value={value} onChange={onChange} />
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment