Notice
Recent Posts
Recent Comments
Link
Silver Library (Archived)
Redux Toolkit 으로 전환하기. 본문
Face the fear, build the future/Library of Logging
Redux Toolkit 으로 전환하기.
Ayin Kim 2022. 12. 28. 17:39반응형
여러모로 알아보던 중, 손해볼 것 같진 않다는 생각이 들었습니다.
현재 확실한 부분.
1. Redux is a state container for JS apps.
2. Consider a React app: like state of a component.
3. Redux stores the state of its application.
4. Redux will store and manage the application state.
Redux is a state container.
The state of the application can change. Just like an example: todo list app -> item(pending) -> item(completed)
In Redux, a pattern is enforced to ensure all state transitions are explicit and can be tracked.
The changes to its application's state can be predictable.
Conclusion:
Redux is a predictable state container for JS base apps.
'Face the fear, build the future > Library of Logging' 카테고리의 다른 글
PHP 레거시 코드를 react 로 변환 한다면? (1) | 2022.12.24 |
---|---|
개발 계획 (~ 23년 01월 09일) (0) | 2022.12.24 |
올해의 주요 이벤트 기록 일지. (0) | 2022.12.19 |
How to add video background with css in react? (0) | 2022.12.16 |
[React.js] How to let client user to download file? (0) | 2022.12.07 |