How do pure components work in MERN stack?
The pure component is the same as the component, except that it handles the component update method on your behalf.
A pure component performs a cursory comparison of both the props and the state when they change.
Components will not compare the current state and props to the future state automatically.
As a result, whenever a component update triggered, the component will re-render by default.