function displayStarRating(starRating){
return starRating.map((index) => (
<div key={index}>===STAR===</div>
)
}
}
class Reviews extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<div>
{displayStarRating(4)}
</div>
);
}
}