1.0.0 • Published 4 years ago
rencond-react v1.0.0
RenCond-React
Conditional Render React Component with Typescript
How to use
Yo can install the package directly using the Node Package Manager
npm install rencond-reactUsage
The component have 5 attributes:
| Attribute | Require? | Description | Type |
|---|---|---|---|
| ComponentIf | Yes | The functional component that would render if the If condition is True | React FC |
| ComponentElse | No | The functional component that would render if the If condition is False | React FC |
| RenderIf | Yes | Condition used for the render of the component | boolean |
| ComponentIfProps | No | Props you can send to the If Component | any |
| ComponentElseProps | No | Props you can send to the Else Component | any |
Import
import RenCond from 'rencond-react'Use
<RenCond
ComponentIf={someComponent}
RenderIf={condition}
/>Example
Simple example of the usage
Code (Example)
