Troubleshooting This is a place to share common problems and solutions to them. The examples use React, but
Store A store holds the whole state tree of your application.
Ecosystem Redux is a tiny library, but its contracts and APIs are carefully chosen to spawn an ecosystem of tools and extensions.
API Reference The Redux API surface is tiny. Redux defines a set of contracts for you to implement (such as
Redux FAQ: Actions Table of Contents
Data Flow Redux architecture revolves around a strict unidirectional data flow. This means
createStore(reducer, [preloadedState], [enhancer]) Creates a Redux store that holds
dispatch(action) Dispatches an action. This
Using Object Spread Operator Since one of the core tenets of Redux is to never mutate state, you'll often find yourself using
Recipes These are some use cases and code snippets to get you started with Redux in a real app. They assume you understand the topics in
Page 3 of 7