Skip to content

Instantly share code, notes, and snippets.

@Bizunow
Created August 21, 2017 08:29
Show Gist options
  • Save Bizunow/867e38eba241dacde72bab2da5c5986a to your computer and use it in GitHub Desktop.
Save Bizunow/867e38eba241dacde72bab2da5c5986a to your computer and use it in GitHub Desktop.
[React conditional rendering] #js #react
render() {
return (
<div className="container">
{this.props.description !== undefined && this.props.description !== '' &&
<div className="description">
{this.props.description}
</div>
}
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment