if.jsx
v1.0.0
Published
Simple if condition helper for JSX
Downloads
3
Maintainers
Readme
if.jsx
Simple if condition helper for JSX.
This module is an implementation of this tweet. It's highly recommended to read the whole thread, since you may find out that you don't actually need this module.
Install
npm install --dev if.jsx
Usage
import If from 'if.jsx'
// ...
return <div className='foobar'>
{If(showHeader) (
<h1>Header</h1>
)}
<div className='body'>body</div>
</div>
If(condition)(children)
condition
: any javascript expressionchildren
: react nodes to render
License
MIT