Все работает нормально, но у меня есть это предупреждение Expected to return a value at the end of arrow function array-callback-return
, я пытаюсь использовать forEach
вместо map
, но тогда <CommentItem />
даже не отображается. Как это исправить?
return this.props.comments.map((comment) => {
if (comment.hasComments === true) {
return (
<div key={comment.id}>
<CommentItem className="MainComment"/>
{this.props.comments.map(commentReply => {
if (commentReply.replyTo === comment.id) {
return (
<CommentItem className="SubComment"/>
) // returnt
} // if-statement
}) // map-function
} // map-function __begin
</div> // comment.id
) // return