Created
November 1, 2017 14:48
-
-
Save eddyw/1d89f16d525852689b818ad71e1552ab 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> | |
<SwitchIf test={this.props.section}> | |
<SwitchWhen equals={1} render={<Section1 />} /> | |
<SwitchWhen equals={2} render={<Section2 />} /> | |
<SwitchWhen equals={3} render={<Section3 />} /> | |
</SwitchIf> | |
</section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment