Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion day-18/post.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ The [3 major principles](http://redux.js.org/docs/introduction/ThreePrinciples.h

* Updates are made with pure functions (in reducers)
* `state` is a read-only property
* `state` is the single source of truth (there is only one `store` in a Redux app)
* `store` is the single source of truth (there is only one `store` in a Redux app)

One big difference with Redux and Flux is the concept of middleware. Redux added the idea of middleware that we can use to manipulate actions as we receive them, both coming in and heading out of our application. We'll discuss them in further detail in a few days.

Expand Down