Files
yaak/src-web/components/KeyboardShortcutsDialog.tsx
Gregory Schier d478e5a12e Hotkey scrolling
2025-03-19 06:48:29 -07:00

11 lines
270 B
TypeScript

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