```
<div>
  <Autocomplete
    placeholder="Enter some text"
    onSelection={value => alert(value)}
    noMatchLabel="No value matched"
    onChange={console.log}
    indexes={[
      'tototata',
      'totota',
      'toto',
      'tatatoto',
      'tatato',
      'tata',
      'foo bar baz',
      'foo bar',
      'foo',
    ]}
  />
</div>
```
