에러 발생 시점의 소스 import './App.css'; import React, { Component } from 'react'; class MyComponent extends Component { componentDidUpdate() { console.log('MyComponent 새로 고침'); } } class MyPureComponent extends React.PureComponent { componentDidUpdate() { console.log('MyPureComponent 새로 고침'); } } class App extends Component { constructor(props) { super(props); this.listValue = [{ name: 'Park' }, { name: 'Lee' }]; this.state = { version: 0 }; this.handleClick = this.handleClick.bind(this); } handleClick...