react-input-autosugest

An atuo sugestion search box

Usage no npm install needed!

<script type="module">
  import reactInputAutosugest from 'https://cdn.skypack.dev/react-input-autosugest';
</script>

README

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