README
react-input-overflow
Overflow input for React

Install
npm install --save react-input-overflow
Usage
import * as React from 'react'
import InputOverflow from 'react-input-overflow'
const Example = () => {
const [name, setName] = useState('Aivan');
render () {
return (
<InputOverflow
value={name}
onChange={e => {
setName(e.target.value);
}}
/>
)
}
}
License
MIT © geocine