Hard
Here is a component supposed to display a counter which increments when the button is clicked.
class Counter extends React.Component{
constructor(){
this.state={counter: 0};
}
increment(){
this.setState({
counter: this.state.counter++
});
}
render(){
return(
<div>
<p>{this.state.counter}</p>
<button onClick={this.increment}>INCREMENT</button>
</div>
);
}
}
What is(are) the problem(s)?
Author: Victor SabatierStatus: PublishedQuestion passed 1389 times
Edit
2
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about React