React.memo

We can improve the performance of React App just by simply avoiding component re-renders. A wasted render happens when a component is rendered with the exact same input data and…

Understanding Redux

What is Redux? It is a JavaScript Library for managing application state. State nothing but data (JavaScript object). Redux will help you with data management for your web applications. Let’s…