Files
yaak-mountain-loop/src-web/components/KeyboardShortcutsDialog.tsx
Gregory Schier 4f9a7e9c88 2024.5.0 (#39)
2024-06-03 14:08:24 -07:00

11 lines
260 B
TypeScript

import { hotkeyActions } from '../hooks/useHotKey';
import { HotKeyList } from './core/HotKeyList';
export function KeyboardShortcutsDialog() {
return (
<div className="h-full w-full pb-2">
<HotKeyList hotkeys={hotkeyActions} />
</div>
);
}