mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-15 05:33:29 +01:00
11 lines
264 B
TypeScript
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>
|
|
);
|
|
};
|