import { For } from "solid-js"; import { shortcuts } from "@/config/shortcuts"; import { useTheme } from "@/context/ThemeContext"; /** Yazi-style keybind reference. The Shell has its own overlay; this component * is kept for embedding inside Settings or other surfaces. */ export function ShortcutHelp() { const { theme } = useTheme(); return ( {(s) => ( {s.keys} {s.action} )} ); }