Skip to content

Instantly share code, notes, and snippets.

@spac3unit
Created November 17, 2016 01:32
Show Gist options
  • Select an option

  • Save spac3unit/478aadcd6243e81b1da7ef2e07e66e18 to your computer and use it in GitHub Desktop.

Select an option

Save spac3unit/478aadcd6243e81b1da7ef2e07e66e18 to your computer and use it in GitHub Desktop.
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