미해결
[리뉴얼] React로 NodeBird SNS 만들기
mainPosts
제로초님 reducer 부분에서
변수이름으로 사용한 mainPosts 는 꼭 변수명이 mainPosts여야 하나요??
case ADD_COMMENT_SUCCESS: {
~나머지 코드들~
const mainPosts = [...state.mainPosts]; //이부분이요
mainPosts[postIndex] = posts;
return {
...state,
mainPosts,
commentIsBeingAdded: false,
commentIsAdded: true,
};
}
ㅇ