Files
yaak/src-web/components/KeyboardShortcutsDialog.tsx
2024-01-28 14:39:51 -08:00

11 lines
264 B
TypeScript

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