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