What is React pure Component?

React Pure Components, introduced for performance enhancement. We can use this optimization to improve the performance of your components. A react component can consider, Pure if it renders the same output for the same state and props. However, it is the same as components except that the pure components take care of shouldComponentUpdate by itself. A shouldComponentUpdate is a … Read more

What is React?

What is React

React is a JavaScript library used for building reusable UI(user interface) components. It maintains by Facebook and the community of individual developers and companies. We use it for single page application. A single page application is a web application that interacts with the user by dynamically rewriting the current web page with new data from … Read more