ยฉ 2026 Hedgehog Software, LLC
function Main() { const [counter, setCounter] = createSignal(0); const getColor = () => { console.log("getting color"); return "blue"; }; const getWidth = () => { return `${counter() * 40}px`; }; return ( <> <button onClick={() => setCounter((x) => x + 1)} style={{ background: getColor(), width: getWidth(), }} > add </button> </> ); }