React Autocomplete
npm install @fiveem/react-autocomplete
React autocomplete that uses debounce.
In order to select a value from the autocomplete, the arrow up/down keys and mouse can be used.
```
npm i @fiveem/react-autocomplete
`JSX
import Autocomplete from '@fiveem/react-autocomplete'
debounceTime={this.state.debounceTime}
onChange={this.onChange}
containerStyle={this.state.containerStyle}
inputStyle={this.state.inputStyle}
autocompleteStyle={this.state.autocompleteStyle}
suggestionStyle={this.state.suggestionStyle}
selectedSuggestionStyle={this.state.selectedSuggestionStyle}/>
`
|Suggestions that will be displayed inside the autocomplete|
|inputValue|Number/String|20/'Spain'|The value that will be displayed inside the input)|
|debounceTime|Number|1000|When the user ends typing in the input, the onChange method will be called after debounceTime seconds (debounceTime should be specified in miliseconds). Default value is 500 ms.|react-autocomplete is released under the MIT license.