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 trialWilliam Blair
Courses Plus Student 3,542 PointsHow do I ensure the property βnameβ is a required string for the Player Component other than React.PropTypes.string?
I got stuck on the question where it asks how to ensure a prop type is a string.
I tried: React.PropTypes.string and React.PropTypes.string,
as answers.
Do I have a typo?
1 Answer
andren
28,558 PointsThe question asks you to make sure name
is a required string. Your code is correct as far as ensuring it is a string. But marking it as a required string requires you to also add .isRequired
.
So the correct answer is: React.PropTypes.string.isRequired