Created
May 20, 2016 18:10
-
-
Save RafalFilipek/cabe93e66387100fcf926ff7a142409b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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