Guest User

Untitled

a guest
Feb 18th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. const Hello = () => {
  2. const [inputValue, setInputValue] = React.useState('');
  3. return (
  4. <input
  5. onChange={(e) => setInputValue(e.target.value)}
  6. value={inputValue}
  7. />
  8. )
  9. }
Add Comment
Please, Sign In to add comment