Created
November 17, 2016 01:32
-
-
Save spac3unit/478aadcd6243e81b1da7ef2e07e66e18 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
| render() { | |
| return( | |
| <div> | |
| <Component1 /> | |
| {this.state.loading | |
| ? <Loader /> | |
| : <Component2 producst={this.state.products /}> | |
| } | |
| </div> | |
| ) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment