# React Input Autocomplete/Autosuggest
Autosuggestion input field for React

[![react-input-autosugest](https://github.com//vinils/react-input-autosugest/blob/releaseCandidate/public/sample.gif?raw=true)](https://github.com/vinils/react-input-autosugest)

## Demo
Demo and playground are available [here](https://vinils.github.io/react-input-autosugest)

## Install




```bash

npm install react-input-autosugest
```

## Usage Example
```JavaScript
import InputAutoSugest from 'react-input-autosugest';

<InputAutoSugest
  size="20"
  name="country"
  value={this.state.country}
  onChange={this.handleChange}
  data={['aa','bb','cc']}/>
```
