life cycle
Jan 18, 2021
»
REACT
life cycle
리액트 컴포넌트에는 생명주기가 존재하는데 쉽게 말하면 ‘실행순서’이다
componentDidMount() { // 랜더링 이후 즉시 호출되는 함수
console.log('Componenet rendered');
}
componentDidUpdate() { // 랜더링이 완료된 직후에 호출
console.log('I just updated');
}
componentWillUnmount() { // 컴포넌트가 사라지기전에 호출
console.log('Goodbye, curel world');
}