Jam3 Lessons - React
When you know a component will always render the same result given the same props and state you can extend from React.PureComponent
instead of React.Component
which implements shouldComponentUpdate()
with a shallow compare on them.