Redux concepts in React in 3 min.

Mcrhistianrs
1 min readMar 29, 2020

--

A simple explanation

Redux

What is ?

It is a library for react that implements the concept of flux architecture

What is it for?

It serves as a global state of the application. React works with the concept of components and each component has its status.

And when a component needs information that is in another state, how do we do it? Then our redux friend comes in to help.

How it works?

Every component must signal through a redux action the need to save its state. This state will be saved on a reducer, the reducers are located in a place called store.

How do I study more?

As a suggestion I will leave the address for my repository, there is a project for a store that uses redux / redux-saga, for those who want to understand the concepts.

If you want to contact me, please { mcrhistianrs at gmail.com }

--

--