I am not sure how to solve this warning message??
"Warning: Each child in an array or iterator should have a unique "key" prop".
let theComments =
this.props.state.studentCommentReducer.studentCommentReducer.map((comments) => {
return <CommentsItem key={comments.id} comments={comments} />;
});
Student: {this.props.comments.comment}