React LifeCycle(수명 주기), 두 번 렌더링 되는 이슈
LifeCycle (수명주기) 예제를 진행하던 중 constructor에 consloe.log가 두 번 실행되어 있었습니다. LifeCycle 수명 주기 예제 소스 import React, { Component } from 'react'; class LifeCycleSample extends Component { state = { number: 0, color: null }; myRef = null; //ref 설정할 부분 constructor(props) { super(props); console.log('constructor'); } /* props로 받아 온 값을 state에 동기화시키는 용도 컴포넌트가 마운트, 업데이트될 떄 호출 */ static getDerivedStateFromProps(ne..