인프런 커뮤니티 질문&답변
query client를 clientRef.current에 저장하는 이유가 무엇인가요~?
해결된 질문
작성
·
373
답변 1
1
정재남
지식공유자
useRef는 html tag의 reference를 참조할 때에만 쓰는 것이 아닙니다.
current에 언제나 최신정보가 반영되길 기대하면서,
동시에 current의 값이 변경되더라도 재랜더링을 일으키지 않길 원하는 모든 경우에
어떤 데이터든 넣을 수 있습니다.
https://reactjs.org/docs/hooks-reference.html#useref
Keep in mind that useRef doesn’t notify you when its content changes. Mutating the .current property doesn’t cause a re-render. If you want to run some code when React attaches or detaches a ref to a DOM node, you may want to use a callback ref instead.






그렇군요! 공식문서를 꼼꼼히 읽어봐야겠네요. 답변해주셔서 감사합니다 :D