mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-16 08:36:40 +01:00
11 lines
270 B
TypeScript
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>
|
|
);
|
|
}
|