react-input-overflow
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

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

Package Sidebar

Install

npm i react-input-overflow

Weekly Downloads

1

Version

0.0.1

License

MIT

Unpacked Size

34.1 kB

Total Files

11

Last publish

Collaborators

  • geocine