const SHORTCUTS = [ { key: "n", desc: "New note / focus compose" }, { key: "/", desc: "Search" }, { key: "j", desc: "Next note in feed" }, { key: "k", desc: "Previous note in feed" }, { key: "Esc", desc: "Go back" }, { key: "?", desc: "This help" }, ]; export function HelpModal({ onClose }: { onClose: () => void }) { return (
e.stopPropagation()} >

Keyboard Shortcuts

{SHORTCUTS.map(({ key, desc }) => (
{key} {desc}
))}
); }