{/* Application Shortcuts */}
Application
{shortcuts.map((shortcut) => (
{shortcut.label}
{formatShortcut(shortcut)}
))}
{/* Editor Shortcuts */}
{EDITOR_SHORTCUTS.map((group) => (
{group.category}
{group.shortcuts.map((shortcut) => (
{shortcut.label}
{shortcut.keys}
))}
))}