Skip to content

Instantly share code, notes, and snippets.

@Kornil
Last active February 16, 2019 10:53
Show Gist options
  • Save Kornil/cfebfd7784a4a7a6b15c5f4b90eb3619 to your computer and use it in GitHub Desktop.
Save Kornil/cfebfd7784a4a7a6b15c5f4b90eb3619 to your computer and use it in GitHub Desktop.
const Hello = () => {
const [inputValue, setInputValue] = React.useState('');
return (
<input
onChange={(e) => setInputValue(e.target.value)}
value={inputValue}
/>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment