Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

readme.md

Chapter 8 : Redux

Redux is based on Flux, and it was designed to tackle the challenge of understanding how data changes flow through your application.

Samples

Reducers

  • Color Reducer (1)
  • Colors Reducer (2)
  • Sort Reducer (3)

The Store

  • createStore (1)
  • combineReducers (2)
  • initialState (3)
  • dispatching Actions (4)
  • subscribe (5)
  • unsubscribe (6)
  • persistent state data (7)

Action Creators

  • action creators (1)
  • compose (2)

Middleware

  • logger (1)
  • saver (2)

Putting it all together

Here is the complete sample store that we have reviewed

Demo | Source