Files
yaak/src-web/components/KeyboardShortcutsDialog.tsx
2024-05-29 12:10:01 -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>
);
}