Overflow input for React
npm install --save react-input-overflow
import 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);
}}
/>
)
}
}
MIT © Aivan Monceller