1.0.0 • Published 7 years ago

if.jsx v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

if.jsx Build Status

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 expression
  • children: react nodes to render

License

MIT