bindActionCreators(actionCreators, dispatch) Turns an object whose values are
Data Flow Redux architecture revolves around a strict unidirectional data flow. This means
dispatch(action) Dispatches an action. This
Store A store holds the whole state tree of your application.
Using Object Spread Operator Since one of the core tenets of Redux is to never mutate state, you'll often find yourself using
Troubleshooting This is a place to share common problems and solutions to them. The examples use React, but
createStore(reducer, [preloadedState], [enhancer]) Creates a Redux store that holds
Ecosystem Redux is a tiny library, but its contracts and APIs are carefully chosen to spawn an ecosystem of tools and extensions.
Redux FAQ: Actions Table of Contents
Refactoring Reducer Logic Using Functional Decomposition and Reducer Composition It may be helpful to see examples of what the different types
Page 3 of 7