자식 컴포넌트에 전달하는 props 관련 테스트
루루개발자:
안녕하세요. 루루개발자 입니다. 이번 시간에는 리액트에서 자식 컴포넌트에 전달하는 props 값들의 변화 감지에 대해 테스트를 진행해보려고 합니다. 먼저 부모컴포넌트는 아래와 같이 작성하였습니다. -- index.tsx import { useCallback, useRef, useState } from "react"; import { TestChildComponent } from "../../../src/components-in/test/test-child-component/test-child-component"; const Index = () => { const [name1, setName1] = useState('홍길동'); const name2 = useRef('아이유'); const renderLo..