Apparently, my code does not do anything:
Here is the console result:
" // running tests Clicking the increment button should increment the count by
1
. Clicking the decrement button should decrement the count by
1
. Clicking the reset button should reset the count to
0
. // tests completed"
**Your code so far**
class Counter extends React.Component {
constructor(props) {
super(props);
this.state = {
count: 0
};
// Change code below this line
this.increment = this.increment.bind(this);
this.decrement = this.decrement.bind(this);
this.reset = this.reset.bind(this);
// Change code above this line
}
// Change code below this line
increment() {
this.setState(state => ({
increment: count++
}));
}
decrement() {
this.setState(state => ({
decrement: count--
}));
}
reset() {
this.setState(state => ({
reset: count=0
}));
}
// Change code above this line
render() {
return (
<div>
<button className='inc' onClick={this.increment}>Increment!</button>
<button className='dec' onClick={this.decrement}>Decrement!</button>
<button className='reset' onClick={this.reset}>Reset</button>
<h1>Current Count: {this.state.count}</h1>
</div>
);
}
};
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36
Challenge: React - Write a Simple Counter
Link to the challenge: