Redux
Vanilla Redux
특징
Store and Reducer
const countModifier = (state = 0) => { return state; }; // state가 initial되지 않으면 undefined를 반환 // state = 0 은 맨 처음 data를 initial하는 것 // state는 currentState
Actions
Dispatch
Subscribe
React Redux
Hooks를 이용하는 방법
connect 함수를 이용하는 방법
Redux Toolkit
Last updated