Files
yaak-mountain-loop/src-web/components/KeyboardShortcutsDialog.tsx
2024-01-10 16:18:08 -08:00

11 lines
259 B
TypeScript

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