react-conditionals
v0.0.1
Published
Conditional components for React using JSX
Downloads
4
Maintainers
Readme
React Conditionals
Conditional components for React using JSX - Demo
Examples
If else
<If condition={this.state.age >= 18}>
<Then>
You can drink in the UK!
</Then>
<Else>
You can't drink in the UK...
</Else>
</If>
Note: This can also be used without an else component
If without an else
<If condition={this.state.errors}>
<Then>
{this.state.errors}
</Then>
</If>