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