Frontend/React
2022. 7. 14.
[React] React useEffect/componentDidMount/componentDidUpdate/componentWillUnmount
useEffect 역할 componentDidMount : 컴포넌트가 mount 된 직후의 작업을 해준다. componentDidUpdate : 컴포넌트에서 Update가 일어난 후에 작업을 해준다. componentWillUnmount : 컴포넌트가 unmount되기 직전의 작업을 해준다. Mount나 Update는 리액트의 생명주기에 관한 내용이다. useEffect 사용법 기본 형태 : useEffect(effect function, dependency array) effect function : 컴포넌트가 mount 됐을 때, update 됐을 때 실행할 함수를 정한다. dependency array : 이 배열의 값이 변할 때만 update 된 것으로 전달한다. import "./styles.c..