mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-14 21:23: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>
|
|
);
|
|
}
|