...

/

Creating a Store

Creating a Store

An introduction to creating a store.

We'll cover the following...

In contrast to most other Flux implementations, in Redux, a single store holds all of the application states in one object. The store is also responsible for changing the state when something happens in our application. We could say that Redux is the store. When we talk about accessing the state, dispatching an action, or listening to state changes, it is the store that is responsible ...