Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created May 17, 2020 18:01
Show Gist options
  • Save jsmanifest/899e5b0e50f6380d2271be53a2e164c0 to your computer and use it in GitHub Desktop.
Save jsmanifest/899e5b0e50f6380d2271be53a2e164c0 to your computer and use it in GitHub Desktop.
function App() {
const [value, setValue] = React.useState('')
function onChange(e) {
setValue(e.target.value)
}
return <MyInput value={value} onChange={onChange} />
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment