Dmytro Morar
State Management

Redux Data Flow

Redux updates always follow the same path.

Steps

  1. UI dispatches an action
  2. Store calls reducers
  3. Reducers return new state
  4. Store notifies subscribers
  5. UI re-renders

dispatch(Action) → reducer → new state → UI

On this page