Files
yaak-mountain-loop/src-web/components/core/HotKeyLabel.tsx
2024-01-11 10:18:05 -08:00

12 lines
283 B
TypeScript

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