Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save v-vashchenko/56ffb6c2643057f7443bde4cf05c25c0 to your computer and use it in GitHub Desktop.
Save v-vashchenko/56ffb6c2643057f7443bde4cf05c25c0 to your computer and use it in GitHub Desktop.
escape listner react
document.removeEventListener("keydown", this.handleEscapeButton, false);
handleEscapeButton = (event) => {
if (event.keyCode === 27) {
this.setState({ openFilter: false });
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment