[react] 리액트 컴포넌트의 생명주기 메서드 종류는 무엇이 있나요?
마운트
constructor()
componentDidMount()
업데이트
shouldComponentUpdate()
componentDidUpdate()
언마운트
componentWillUnmount()
이러한 생명주기 메서드를 이용하여 컴포넌트가 언제 생성되었고 제거될 때 어떠한 동작을 수행해야 하는지를 제어할 수 있습니다.