use-keyboar
capture key combinations easily
Module
import { useKeyboard } from "@atomico/hooks/use-keyboard";
Syntax
useKeyboard(
ref: Ref<Element>,
keysCode: string[],
callback: (event: KeyboardEvent)=>void
);
where:
ref, the reference to associate the event keydown and keyup.
keysCode: key combination to capture
callback: receives the last event of the key combination
Example