Skip to content

Instantly share code, notes, and snippets.

@jeanpaulsio
Created December 13, 2017 04:59
Show Gist options
  • Save jeanpaulsio/5b1c8ccfc96b5787fd6bfbd3f758d7a8 to your computer and use it in GitHub Desktop.
Save jeanpaulsio/5b1c8ccfc96b5787fd6bfbd3f758d7a8 to your computer and use it in GitHub Desktop.
Conditional Rendering in React
render () {
return (
<div>
{this.props.errors && <div>Error Message</div>}
<h1>Your Amazing Content</h1>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment