React Stateless components - performance and PureRender
Everyone says that it uses stateless components will improve application performance. I noticed, however, that the use of stateless component in the wrong place can really reduce application performance. This happens because the stateless components, render always, even if the properties have not changed . In the case of stateful components we can use PureComponent , PureRenderMixin or implement own shouldComponentUpdate - thanks it noticed a big Increase in application performance when compared to stateless components. I wanted to ask if there is some way to implementation something like