/* ============================================================ * controls.jsx — Left-rail control panels * ============================================================ */ function Panel({ ord, title, en, children }) { return (
{ord} {title} {en}
{children}
); } function Field({ label, value, children }) { return (
{label && (
{label} {value !== undefined && {value}}
)} {children}
); } // --- Text input --- function TextPanel({ state, set }) { return (