Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 645 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 645 Bytes

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']}/>