Skip to content

vinils/react-input-autosugest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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