List down the components of Redux.

Redux is composed of the following components:

1) Action
– It’s an object that describes what happened.
2) Reducer
– It is a place to determine how the state will change.
3) Store – State/ Object tree of the entire application is saved in the Store.
4) View – Simply displays the data provided by the Store.

Comments