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 trialAmy Preci
6,247 PointsWhat 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>
);
}
}
1 Answer
Amy Preci
6,247 PointsOh boy. I just answered my own question. it was {this.props.time} .... React is so confusing....
Mark Sebeck
Treehouse Moderator 37,799 PointsMark Sebeck
Treehouse Moderator 37,799 PointsNice 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!