rehooks / input-value

React hook for creating input values

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@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}/>;
}

About

React hook for creating input values

License:MIT License


Languages

Language:JavaScript 77.5%Language:HTML 22.5%