lifecycle
생명주기 컴포넌트가 DOM트리에 렌더링되기까지의 과정을 마운트라고 한다 생명주기 함수들 중에 지금 알아볼 함수는 componentDidMount, componentWillUnmount이다 componentDidMount class Count extends React.Component{ constructor(props) { super(props); this.state = { cnt : 0 } } counting(number){ return number +=1; } render() { this.state.cnt = this.counting(this.state.cnt); return ( {this.state.cnt} ) } } function Start(){ ReactDOM.render( , document...