Skip to content

Instantly share code, notes, and snippets.

@PxyUp
Created April 14, 2019 18:40
Show Gist options
  • Save PxyUp/fcefafe178ae74803b5c1cd654ef80ff to your computer and use it in GitHub Desktop.
Save PxyUp/fcefafe178ae74803b5c1cd654ef80ff to your computer and use it in GitHub Desktop.
react If
render() {
const cond = true;
return {
<div>
{ cond ? <Component/> : (null) }
</div>
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment