1.0.0 • Published 7 years ago
@rehooks/input-value v1.0.0
@rehooks/input-value
React hook for creating input values
Note: This is using the new React Hooks API Proposal which is subject to change until React 16.7 final.
You'll need to install
react,react-dom, etc at^16.7.0-alpha.0
Install
yarn add @rehooks/input-valueUsage
import useInputValue from '@rehooks/input-value';
function MyComponent() {
let name = useInputValue('Jamie');
// name = { value: 'Jamie', onChange: [Function] }
return <input {...name}/>;
}1.0.0
7 years ago