код:
class App extends React.Component {
state = {
currentValue: 0,
}
shouldComponentUpdate() {
const { currentValue } = this.state;
if (currentValue+1 >4) {
return true;
} else {
return false;
}
}
updateValue = () => {
const { currentValue } = this.state;
this.setState({
currentValue: currentValue + 1
});
};
render() {
const { currentValue } = this.state;
return (
<div>
<h4>Current value: {currentValue}</h4>
<button onClick={this.updateValue}>Update</button>
</div>
);
}
}
Не могу придумать как описать кодом ситуацию в п.4 поверки