1.0.0 • Published 6 years ago

@rehooks/input-value v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

@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-value

Usage

import useInputValue from '@rehooks/input-value';

function MyComponent() {
  let name = useInputValue('Jamie');
  // name = { value: 'Jamie', onChange: [Function] }
  return <input {...name}/>;
}