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 trialEricka Erickson
9,982 Pointsrendering 2 sets of 5 stars
import React, { useState } from 'react';
import Star from './Star';
const StarRating = () => {
const renderStars = () => {
let stars = [];
const maxRating = 5;
for ( let i = 0 ; i < maxRating ; i++) {
stars.push (
<Star
key={i}
/>
);
}
return stars;
}
return (
<ul className='course--stars'>
{ renderStars()}
</ul>
);
}
export default StarRating;
why is it rendering two sets of 5 stars?
2 Answers
Travis Alstrand
Treehouse Project ReviewerWas there any changes made to the Course.js
file? Just want to make sure there's not two StarRating
components written in it's return statement. The code you provided does seem to look just like Laura's solution in Video 2.
Ericka Erickson
9,982 Pointsyup I totally wrote it twice in the course.js file thanks!
Travis Alstrand
Treehouse Project ReviewerOh good, I'm glad it was an easy find and fix!