I'm mapping through an array of comments and I am returning the same component that handles the data passed to it. It is kind of confusing because I can not tell which is odd or even and I need to style it based on that.
<div className="comments">
<h3>comments</h3>
//here
<Comment />
</div>
if it were like this, I would have known what to do
<div className="comments">
<h3>comments</h3>
<ul>
<li>You look good!</li>
<li>You are amazing!</li>
<li>What a wonderful project!</li>
<li>Are you free tomorrow? let's cook.</li>
</ul>
</div>