Ans
- Redux is a predictable state container for JavaScript applications.
- It helps you write applications that behave consistently, run in different environments (client, server, and native), and are easy to test.
- Simply put, Redux is a state management tool. While it’s mostly used with React, it can be used with any other JavaScript framework or library.
- It is lightweight at 2KB (including dependencies), so you don’t have to worry about it making your application’s asset size bigger.
- With Redux, the state of your application is kept in a store, and each component can access any state that it needs from this store.
No comments:
Post a Comment