[React] LifeCycle 조절팁

코드깎는 노인·2022년 1월 13일
0
export default function App() {
  const [isLoad, setIsLoad] = useState(false);
  
  useEffect(() => {
    setIsLoad(isLoad);
  }, []);
  
  useEffect(() => {
    if (isLoad) {
      console.log("run after load");
    }
  }, [isLoad]);

  return (
    <></>
  );
}

useEffect의 dependency를 이용하여 특정 상태가 변경후 다음 이벤트를 발생시킬 수 있다.

profile
내가 볼려고 만든 블로그

0개의 댓글