컴포넌트 생명주기

https://user-images.githubusercontent.com/74593890/123029177-ac9b5a80-d41b-11eb-8350-b43cf3739e55.png

Constructor(props) function

constructor(props) {
  super(props);
  // 이후 추가적인 state 데이터 혹은 변수를 선언합니다.
}

render() function