Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 303 Bytes

FAQ.md

File metadata and controls

12 lines (7 loc) · 303 Bytes

How do I get the input field?

The input field is available on the Autosuggest instance as input.

For example, you could store the input field like this:

<Autosuggest ref={autosuggest => this.input = autosuggest.input} ... />

Codepen example