...

/

Basic Reducers

Basic Reducers

In this lesson, we construct a basic reducer.

We'll cover the following...

In Redux, reducers are the final stage in the unidirectional data flow. After an action is dispatched to the store and has passed through all the middleware, reducers receive it alongside the application’s current state. Then they create a new ...