๐Ÿ“š Reference


๐Ÿ“œ Chapter


useRef, ref, forwardRef

useEffect

โ€ฃ

Reconciliation


const Counter = () => {
  const count = useRef(0);
  let currentCount = count.current;
  useEffect(() => {
    count.current = currentCount;
  });
  currentCount += 1;
  return <div>count:{currentCount}</div>;
};