'use client'; import { Modal } from './Modal'; import { cn } from '@/lib/utils'; interface KeyboardShortcut { keys: string[]; description: string; category?: string; } interface KeyboardShortcutsModalProps { isOpen: boolean; onClose: () => void; shortcuts: KeyboardShortcut[]; title?: string; } function KeyBadge({ keyText }: { keyText: string }) { return ( {keyText} ); } function ShortcutRow({ shortcut }: { shortcut: KeyboardShortcut }) { return (
Aucun raccourci disponible sur cette page