A React component for Autocomplete hint
npm install react-autocomplete-hint!NPM
!npm



Demo can be found here: https://ejmudi.github.io/react-autocomplete-hint/
npm install --save react-autocomplete-hint
`
or
`
yarn add react-autocomplete-hint
`
Usage
`jsx
import { Hint } from 'react-autocomplete-hint';const options = ["orange", "banana", "apple"];
// OR
const options = [
{id: 1, label: "orange"},
{id: '2', label: "banana"},
{id: 3, label: "apple"}
];
value={text}
onChange={e => setText(e.target.value)} />
`Click on the hint or use your keyboard Right key, Tab key (if
allowTabFill is set to true), or Enter key (if allowEnterFill is set to true) to fill your input with the suggested hint.
Props
#### options (required):
Array