본문 바로가기
부트캠프교육중/react

[React] MotionValue에서 console.log

by 뭉지야 2023. 9. 11.
728x90

motionValue가 바뀌면 컴포넌트가 재랜더링되지 않는다.
그래서 console.log 적용안된다.

 

 

이렇게 해줘야한다.

  useEffect(() => {
    x.onChange(() => console.log(x.get()));
  }, [x]);

 

728x90

'부트캠프교육중 > react' 카테고리의 다른 글

[React] 진짜 미친 Framer motion이다  (0) 2023.09.11
[React] 다른 board끼리의 움직임  (0) 2023.09.08
[React] 같은 board안에서의 움직임  (0) 2023.09.08
[React] React.memo  (0) 2023.09.08
[React] Recoil 정리  (0) 2023.09.05