Created
November 1, 2017 14:41
-
-
Save eddyw/7181ecad0981cd4711c8ab452263c4ed to your computer and use it in GitHub Desktop.
Suck less at React (utilities #1): Switch Components
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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