Skip to content

Instantly share code, notes, and snippets.

@trey
Last active September 15, 2016 02:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trey/f000fdb75d4e35ada260 to your computer and use it in GitHub Desktop.
Save trey/f000fdb75d4e35ada260 to your computer and use it in GitHub Desktop.
Conditional Blocks in JSX
return (
  <div className="wrapper"
    {(this.state.corbin) ?
        <h1>I am a meat popsicle.</h1>
    : null}
  </div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment