© 2026 Hedgehog Software, LLC
const [counter, setCounter] = useState(0); const increment = () => setCounter(counter + 1); return <button onClick={() => { increment(); increment(); }>{counter}</button>
counter