0.0.1-rc.4 • Published 6 years ago

react-input-autosugest v0.0.1-rc.4

Weekly downloads
63
License
MIT
Repository
github
Last release
6 years ago

React Input Autocomplete/Autosuggest

Autosuggestion input field for React

react-input-autosugest

Demo

Demo and playground are available here

Install

npm install react-input-autosugest

Usage Example

import InputAutoSugest from 'react-input-autosugest';

<InputAutoSugest
  size="20"
  name="country"
  value={this.state.country}
  onChange={this.handleChange}
  data={['aa','bb','cc']}/>