// Atlas · Step 2 — Scope review with themed question groups // ── Module-scope utilities (must be outside component to avoid remount on every render) ── function autoResize(el) { if (!el) return; el.style.height = "auto"; el.style.height = el.scrollHeight + "px"; } const _scopeRowRef = (el) => { if (el) autoResize(el); }; function ScopeRow({ prefix, value, onChange, onDelete, placeholder }) { return (
{prefix && {prefix}}