한주간 정리
어려웠던 부분
const onDeleteComments = (id) => {
preventDefault();
dispatch(deleteComment(id));
axios.delete(`http://localhost:3001/comments/${id}`);
setComments(comments.filter((comment) => comment.id !== id));
};
해당 아이디를 삭제하는부분이 머리속에서 생각이 않나서 너무 힘들게 했던거 같다.
다음주 목표