A tiny module for putting your render function inside a PureRenderComponent.
var MyNowPureComponent = PureRenderFunction(function () {
return <div/>;
});
Less boilerplate in my actual project, the nicer. Also because these functions will just get called over and over otherwise.
MIT