Loading...
Loading...
function Counter() { const [count, setCount] = useState(0); return ( <div className="counter"> <h1>Count</h1> <p>{count}</p> <button onClick={() => setCount(count + 1)}> Increment </button> </div> );}waiting
waiting
no operations yet