Skip to content

Instantly share code, notes, and snippets.

@eddyw
Created November 1, 2017 14:41
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 eddyw/7181ecad0981cd4711c8ab452263c4ed to your computer and use it in GitHub Desktop.
Save eddyw/7181ecad0981cd4711c8ab452263c4ed to your computer and use it in GitHub Desktop.
Suck less at React (utilities #1): Switch Components
<section>
{
this.props.section === 1
? <Section1 /> :
this.props.section === 2
? <Section2 />
this.props.section === 3
? <Section3 />
: null
}
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment