Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
const combinePost = selector.posts?.map(post => ({ ...post, user: selector.users?.find(user => post.userId === user.id), commetns: selector?.commetns?.find(comment => post.id === comment.postId) }))
commetns
const combinePost = selector.posts?.map(post => ({ ...post, user: selector.users?.find(user => post.userId === user.id), comments: selector?.comments?.find(comment => post.id === comment.postId) }))