Files
yaak/src-web/components/core/HotKeyLabel.tsx
Gregory Schier 84d447973e Hotkey labels
2024-01-08 15:57:21 -08:00

12 lines
290 B
TypeScript

import type { HotkeyAction } from '../../hooks/useHotkey';
import { useHotKeyLabel } from '../../hooks/useHotkey';
interface Props {
action: HotkeyAction | null;
}
export function HotKeyLabel({ action }: Props) {
const label = useHotKeyLabel(action);
return <span>{label}</span>;
}