react-input-autosugest
Version:
An atuo sugestion search box
30 lines (19 loc) • 668 B
Markdown
# React Input Autocomplete/Autosuggest
Autosuggestion input field for React
[](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']}/>
```