[TIL] 내일배움캠프 React 과정 2022.12.19
Today I Learned React 심화 강의 수강 코딩애플에서 Promise 관련 강의 수강 React 심화 강의 global state에 db.json에서 가져온 데이터를 넣는 과정 // todosSlice.js const initialState = { todos: [], isLoading: false, error: null, }; initialState에 todos의 값은 빈 배열이다. // db.json { "todos": [ { "id": 1, "title": "리액트 정복", "content": "리액트랑 친해지기", "isDone": false }, { "id": 2, "title": "코딩 공부하기", "content": "성실하게! 열심히!", "isDone": true } ] } d..