October 2019
Intermediate to advanced
426 pages
11h 49m
English
This Hook is used to easily implement input handling, and to synchronize the state of an input field with a variable. It can be used as follows:
import { useInput } from 'react-hookedup'function App () { const { value, onChange } = useInput('') return <input value={value} onChange={onChange} />}
As we can see, Hooks greatly simplify dealing with input fields in React.
Read now
Unlock full access