Skip to content

Instantly share code, notes, and snippets.

@surajitbasak109
Created February 10, 2020 20:14
Show Gist options
  • Save surajitbasak109/269d398e1abcbdca2eead5044c639319 to your computer and use it in GitHub Desktop.
Save surajitbasak109/269d398e1abcbdca2eead5044c639319 to your computer and use it in GitHub Desktop.
autocomplete(evt) {
// ... more code ...
}
hanldeKeyup(evt) {
// event code 27 means escape key
if (evt.keyCode === 27) {
this.setState({ searchItems: [] });
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment