I'm new to web development ,can someone explain what is the use of Redux in a React app?

Viewed 39

So I've just started on the journey of web development. I've created some basic apps using react. Just wanted to know what is Redux,

1 Answers

Redux is basically used for state management. Whenever you update any component in react all the components linked to it will get re rendered which will cause our application performance. So in order to prevent all components to re render, concept of redux come into picture where you can update your state with the help of this state management tool.

Related