Skip to content

Instantly share code, notes, and snippets.

@RafalFilipek
Created May 20, 2016 18:10
Show Gist options
  • Save RafalFilipek/cabe93e66387100fcf926ff7a142409b to your computer and use it in GitHub Desktop.
Save RafalFilipek/cabe93e66387100fcf926ff7a142409b to your computer and use it in GitHub Desktop.
pure(
compose(
lifecycle({
componentWillMount: () => {
console.log(this, this.state, this.props); // function _class, undefined, undefined
},
componentDidMount: () => {
console.log(this, this.state, this.props); // function _class, undefined, undefined
},
})
)(() => <div>foo</div>)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment