TIL 230314 리덕스와 리덕스 툴킷 코드 차이 복습 (Redux vs Redux Toolkit)
리덕스 (Redux) Store => createStore import { createStore } from 'redux' Reducer 리듀서 함수를 선언하고 그 함수를 넘겨서 store를 생성하면 된다. export const todosReducer = (state = [], action) => { switch (action.type) { case ADD_TODO: return state.concat({ id: action.payload.id, text: action.payload.text, completed: false }) case TODO_TOGGLED: return state.map(todo => { if (todo.id !== action.payload.id) return todo retur..
TIL
2023. 3. 14. 23:20
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 타입스크립트
- scss
- javascript
- 비주얼스튜디오코드
- 깃
- vscode
- 스파르타코딩클럽
- html
- CSS
- 회고
- Til
- 김버그
- 저스트코드
- 구름에듀
- 파이썬
- 제이쿼리
- 코딩앙마
- 자바스크립트
- js
- React
- TS
- map
- 리액트
- Python
- 코드잇
- 제로초
- Typescript
- git
- vue
- 드림코딩
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함