import { useState, useRef } from "https://esm.sh/react";
import ReactDOM from "https://esm.sh/react-dom";
function App() {
console.log('App render');
const [stateCount, setStateCount] = useState(0);
const refCount = useRef(0);
const handleClick = () => {
refCount.current ++;
setStateCount(prev => prev + 1);
console.log('refCount.current', refCount.current);
console.log('stateCount', stateCount);
}
return <>
Ref count:
<h1>{refCount.current}</h1>
State count:
<h1>{stateCount}</h1>
<button onClick={handleClick}>Add count</button>
</>
}
ReactDOM.render(<App />, document.querySelector("#app"));
View Compiled