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
Esckey is pressed.This hook listens for the
keydownevent on the specified element or the window if no element is specified. When theEsckey (key code 27) is pressed, the provided callback function is executed.Example