UNPKG

@spotinst/spinnaker-deck

Version:

Spinnaker-Deck service, forked with support to Spotinst

6 lines (4 loc) 222 B
import { useEventListener } from './useEventListener.hook'; export function useEscapeKeyPressed(callback: () => any) { useEventListener(document.body, 'keyup', (e: KeyboardEvent) => e.key === 'Escape' && callback()); }