According to the docs, React.Component doesn't implement shouldComponentUpdate ?
So how about a lifecycle of a component (the-component-lifecycle) (shouldcomponentupdate) ?
React.PureComponent is similar to React.Component. The difference between them is that React.Component doesn’t implement shouldComponentUpdate(), but React.PureComponent implements it with a shallow prop and state comparison.
React.Componentdoesn't implementsshouldComponentUpdatefunction, which seem not to be true, accroding to the other part of the docs.