rc-if

0.0.12 • Public • Published

RcIf conditional rendering

for those who do not like to have many ternary operators or multiple functions render

Usage

import RcIf, {RcElse} from 'rc-if';
...
 
render(){
  ...
 
  <RcIf if={condition} >
    <h1>I no longer miss ngif</h1>
  </RcIf>
  <RcIf if={othercondition} >
    <h1>I no longer miss v-if</h1>
    <RcElse>
      <h1>I love react</h1>
    </RcElse>
  </RcIf>
}

Clarification

without trying to offend this project is for those who do not like ternary operators or multiple functions render.

v0.0.4

  • RcElse Added: RcElse will render when condition is false.

v0.0.9

  • BugFix: Render divs
  • Add react as peer dependencies

Readme

Keywords

Package Sidebar

Install

npm i rc-if

Weekly Downloads

15

Version

0.0.12

License

MIT

Unpacked Size

13.3 kB

Total Files

6

Last publish

Collaborators

  • percho