react tiny auto suggest component
npm install react-tiny-autosuggest```
npm i react-tiny-autosuggest
`
import AutoSuggest from 'react-tiny-autosuggest';
render(){
const suggestions = ['foo', 'bar'];
const handleSelect = selection => {console.log(selection)};
let input;
const handleSubmit = () => console.log(input.value);
return (
// without submit button
onSelect = {handleSelect}
placeholder = "whatever..."
/>
``