egfrank / bike-philadelphia-backend

A web app designed to practice building a backend in Django.
https://bike-philly.herokuapp.com/
0 stars 0 forks source link

Data Flow #10

Open egfrank opened 5 years ago

egfrank commented 5 years ago

1) You call store.dispatch(action)

2) The Redux store calls the reducer function you gave it

3) The root reducer may combine the output of multiple reducers into a single state tree

4) The Redux store saves the complete state tree returned by the root reducer