Skip to content

Instantly share code, notes, and snippets.

@mmollaverdi
Created April 29, 2016 11:06
Show Gist options
  • Save mmollaverdi/2c5e4c0a86431ecb9062f2ccc0a7d64c to your computer and use it in GitHub Desktop.
Save mmollaverdi/2c5e4c0a86431ecb9062f2ccc0a7d64c to your computer and use it in GitHub Desktop.
Logged HOC
const logged = ComposedComponent => React.createClass({
render() {
console.log(`Rendering ${ComposedComponent.displayName}`);
return <ComposedComponent ...{this.props} />
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment