@tempots/dom
When() function
Lazily renders content based on a boolean condition.
Signature:
When: (condition: Value<boolean>, then: () => TNode, otherwise?: () => TNode) => Renderable
Parameters
Parameter |
Type |
Description |
---|---|---|
condition |
Value<boolean> |
The condition to evaluate |
then |
() => TNode |
Function returning content to render if condition is true |
otherwise |
() => TNode |
(Optional) Optional function returning content to render if condition is false |
Returns: Renderable
Renderable content