0.0.1 • Published 4 years ago

react-input-overflow v0.0.1

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

react-input-overflow

Overflow input for React

NPM JavaScript Style Guide

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