Web / React native Interview questions
What is REDUX?
Redux is a state management tool for JavaScript applications. You can use Redux together with React, or with any other view library.
It helps you write applications that behave consistently, run in different environments (client, server, and native), and are easy to test.
Redux is made up of the following key parts:
- actions,
- reducers,
- store,
- dispatch,
- selector.
More Related questions...