예시대로 진행하고 있지만 있던 것들을 이용하다보니
replycommentlist>replycomment/replyaddcommnet 식으로 흘러가고 있다.
담엔.. 한꺼번에 작업...하는 걸로..한다..
그래서 어떻게 했냐면
replyComment
const ReplyCommentList = ({ user }) => {
const [display, setDisplay] = useState(false);
console.log(user);
return (
<ReplyWrap>
<Replybutton
onClick={() => {
setDisplay(!display);
}}
>
답글 쓰기
</Replybutton>
{display && <ReplyAddComment />}
{display &&
user?.replyComment.map((user) => {
return <ReplyComment user={user} />;
})}
;
</ReplyWrap>
);
};
export default ReplyCommentList;
다른 분들과 함께 했을 땐 처은엔 어떻게든 됐는데 새로 작성되는 글엔 적용되지 않았다...!
이렇게 입력했을 때 답글쓰기 버튼을 눌렀을 때 addcomment는 잘 뜨지만 댓글이 입력되지 않다는 점이 발생하고 있어서 주말내내 진행해보기로 했다.
만약... 안된다면 칼같이 드랍하기로 했다^ㅡ^ㅠㅠㅠ.....