use-hotkey-mapper Installing: pnpm i use-hotkey-mapper code sample: import useHotkeyMapper from "use-hotkey-mapper"; export default function App() { useHotkeyMapper({ "alt+h": () => alert("hello"), }); return <>press alt+h to say hello</>; }