Egghead Redux

From the first note in the notebook:

The single immutable state tree

First principle of Redux: your whole state is just one single JavaScript object. With each change, it goes through a series of mutations.

Each change is explicit. 

In fact, the state can be a single number, array, or (usually) an object.
Continue to the rest of the note ⇒