mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-15 08:13:27 +01:00
11 lines
260 B
TypeScript
11 lines
260 B
TypeScript
import { hotkeyActions } from '../hooks/useHotKey';
|
|
import { HotKeyList } from './core/HotKeyList';
|
|
|
|
export function KeyboardShortcutsDialog() {
|
|
return (
|
|
<div className="h-full w-full pb-2">
|
|
<HotKeyList hotkeys={hotkeyActions} />
|
|
</div>
|
|
);
|
|
}
|