<div id="app"></div>
body {
  padding: 20px;
}

.input-group {
  width: 300px;
}

.search-group {
  display: flex;
  height: 38px;
}

ul, ol {
  list-style: none;
}

.fw-bolder {
  padding-top: 24px;
  padding-left: 0;
}
import { useState, useRef } from "https://esm.sh/react";
import ReactDOM from "https://esm.sh/react-dom";

// useRef 顧名思義就是使用「參考」該值與元件生命週期脫鉤不受渲染影響、創造的可變值(Mutable Value)也不會觸發渲染

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); // always delay one after ref
    console.log('stateCount', stateCount);
    // alert(refCount.current);
  }
  
  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

External CSS

  1. https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.2/css/bootstrap.min.css

External JavaScript

  1. https://cdnjs.cloudflare.com/ajax/libs/react/18.2.0/umd/react.production.min.js
  2. https://cdnjs.cloudflare.com/ajax/libs/react-dom/18.2.0/umd/react-dom.production.min.js