Custom React hook that detects when the Esc key is pressed.
This hook listens for the keydown event on the specified element
or the window if no element is specified. When the Esc key
(key code 27) is pressed, the provided callback function is executed.
Custom React hook that detects when the
Esc
key is pressed.This hook listens for the
keydown
event on the specified element or the window if no element is specified. When theEsc
key (key code 27) is pressed, the provided callback function is executed.Example