As seen in https://github.com/facebook/react/releases/tag/v15.3.0, we now have to possibility to use the following pattern with es2015 classes: ``` class MyComponent extends React.PureComponent { .... } ``` This will eliminate the need to handle shouldComponentUpdate by yourself or stateless functional components if you want to. We should allow the user to extend from React.PureComponent, e.g. as a command line flag. @sthzg: Whats your opinion on this?