[React] Props Drilling
·
카테고리 없음
Props Drilling은 부모 컴포넌트에서 직접 사용하는 자식 컴포넌트로 Props를 전달할 때 전달용으로만 거쳐가는 컴포넌트가 발생하는 것을 말한다. const ParentComponent = () => { return }; const FirstChildComponent = ({title}) => { return }; const SecondChildComponent = ({title}) => { return }; const ThirdChildComponent = ({title}) => { return {title} }; Props가 실제 사용되는 ThirdChildComponent까지 가기 위해서 First > Second 를 거쳐간다. 이게 예시처럼 Depth가 적은 경우에는 크게 문제가 되지 않..