import Comment from "../Comment/Comment";
export default function Comments({ comments }) {
return(
<div className={"comments"}>
{comments.map(element =>
<Comment
forKey={element.id}
name={element.name}
/>
)}
</div>
)
}
export default function Comment({ forKey, name }) {
console.log(forKey)
return(
<div key={forKey} className={"comment"}>
{name}
</div>
)
}