Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialShamique Etienne
Courses Plus Student 1,832 PointsBrowser (chrome) doesn't recognize the state. Score isn't showing as 0 when I put it within the state.
class Counter extends React.Component {
constructor() {
super()
this.state = {
score: 0
};
}
render() {
return (
<div className="counter">
<button className="counter-action decrement"> - </button>
<span className="counter-score">{this.props.score}</span>
<button className="counter-action increment"> + </button>
</div>
);
}
}
1 Answer
Torben Korb
Front End Web Development Techdegree Graduate 91,433 PointsHi Shamique,
in your counter-score you'll need to reference to this.state.score
instead of this.props.score
when you refactor the Class.
Hope this helps. Happy coding!
Shamique Etienne
Courses Plus Student 1,832 PointsThank you!
Shamique Etienne
Courses Plus Student 1,832 PointsShamique Etienne
Courses Plus Student 1,832 Pointsit shows previous scores that were listed