use-easy-input
v0.1.0
Published
Stateful hook for input components
Downloads
3
Readme
use-input
Stateful hook for controlled input components
Install
npm install --save use-input-hook
Usage
import * as React from 'react'
import useInput from 'use-input-hook';
const App = () => {
const [inputValue, onInputChange] = useInput("");
const [textAreaValue, onTextAreaChange] = useInput("");
const [checkBoxValue, onCheckboxChange] = useInput(false, 'checked');
return (
<>
<div>
Input: <input type='text' value={inputValue} onChange={onInputChange} />
</div>
<div>
Textarea: <textarea value={textAreaValue} onChange={onTextAreaChange} />
</div>
<div>
Checkbox: <input type="checkbox" value={checkBoxValue} onChange={onCheckboxChange} />
</div>
</>
)
}
License
MIT © SiddharthMantri