(event: React.ChangeEvent<HTMLInputElement>)
| 17 | }, 300); |
| 18 | |
| 19 | const onChange = (event: React.ChangeEvent<HTMLInputElement>) => { |
| 20 | setInputValue(event.currentTarget.value); |
| 21 | handleSearch(event.currentTarget.value); |
| 22 | }; |
| 23 | |
| 24 | // Track when the InstantSearch query changes to synchronize it with |
| 25 | // the React state. |
nothing calls this directly
no outgoing calls
no test coverage detected