bindActionCreators(actionCreators, dispatch) Turns an object whose values are
Using Object Spread Operator Since one of the core tenets of Redux is to never mutate state, you'll often find yourself using
Redux FAQ: Actions Table of Contents
API Reference The Redux API surface is tiny. Redux defines a set of contracts for you to implement (such as
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.
Store A store holds the whole state tree of your application.
dispatch(action) Dispatches an action. This
Data Flow Redux architecture revolves around a strict unidirectional data flow. This means
Redux FAQ: Store Setup Table of Contents
Page 3 of 7