What is the point of shouldComponentUpdate() method? Technology Community › Category: React › What is the point of shouldComponentUpdate() method? 0 Vote Up Vote Down VietMX Staff asked 4 years ago It’s used for performance reasons, for example if the implementor of a component knows for sure that a particular property change does not necessitate a re-render, they could return false from this method and skip the re-render.