그저 input의 .focus()기능을 사용하기위해 쓰던 useRef에 대해 깊게 공부해보자
useRef안에 .current라는 박스가 있고 해당 박스내부에서 값이 바뀌기 때문에 렌더링에 영향을 끼치지 않는다고 생각하면 될듯
return (
<>
{count}
<button onClick={() => { setCount((count) => count + 1)}}> increment</button>
<button onClick={() => { refCount.current++; }}>ref increment</button>
<button onClick={() => { console.log("current ref is...", refCount)}}>show Ref</button>
</>
);