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 Krolik
Full Stack JavaScript Techdegree Graduate 15,092 Pointswhy is Book title as the prop incorrect?
it's the only piece of this I'm missing
1 Answer
KRIS NIKOLAISEN
54,971 PointsAre you talking about this question?
const Shelf = () => {
return <Book title="TL;DR" author="Jay McQuery" year={2013} />;
}
// Book component
const Book = ({ , , }) => {
return (
<div>
<h1>Title: { }</h1>
<p>Author: { }</p>
<p>Published: { }</p>
</div>
);
}
If so can you provide your complete answers? I entered title and it worked.
SHAWNELL HARRISON
16,282 PointsSHAWNELL HARRISON
16,282 Pointsyes