내일 배움 캠프 React 8주차 WIL

baesee·2022년 12월 26일
0

내일배움캠프

목록 보기
49/75

한주간 정리

  • 프로젝트
    • 프로젝트 S.A
    • 프로젝트 분배
    • json-server axios
  • 공부
    • Thunk
    • json server
    • axios CRUD

어려웠던 부분

const onDeleteComments = (id) => {
    preventDefault();
    dispatch(deleteComment(id));
    axios.delete(`http://localhost:3001/comments/${id}`);
    setComments(comments.filter((comment) => comment.id !== id));
  };

해당 아이디를 삭제하는부분이 머리속에서 생각이 않나서 너무 힘들게 했던거 같다.

다음주 목표

  • 프로젝트 완성!
  • axios
  • react-query
  • 미니 프로젝트(react-query)
  • react native

0개의 댓글