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 trial

JavaScript React Basics (2018) Understanding State Understanding State Review

Amy Preci
Amy Preci
5,672 Points

What is the answer to this quiz question?

It asks to fill in the blank (between span) to display the value of a prop named time for this component. I tried a few options: {props.time} {this.time} {this.state.time} all wrong

class Clock extends React.Component { render() { return ( <span className="time"> </span>
); } }

Mark Sebeck
Mark Sebeck
Treehouse Moderator 37,554 Points

Nice job answering your own question Amy. Sometimes the act of asking the question helps you figure it out. I changed your comment to an answer and made it best answer. Keep at it!

1 Answer

Amy Preci
Amy Preci
5,672 Points

Oh boy. I just answered my own question. it was {this.props.time} .... React is so confusing....