State Management
Redux Data Flow
Redux updates always follow the same path.
Steps
- UI dispatches an action
- Store calls reducers
- Reducers return new state
- Store notifies subscribers
- UI re-renders
dispatch(Action) → reducer → new state → UI
Redux updates always follow the same path.
dispatch(Action) → reducer → new state → UI