Fn()
ts
function Fn(__namedParameters): Element;Defined in: components/fn.tsx:35
Executes a function without rendering any content.
This component is used for side effects only. It calls the provided function via callFn and does not produce any DOM output.
If the function is exposable, its result will be made available as a variable within the rendering context.
Parameters
| Parameter | Type |
|---|---|
__namedParameters | ExposableFn |
Returns
Element
React Component (empty Fragment)
Remarks
- Does not render anything
- Intended for triggering logic or exposing values
Since
1.0.0
Author
Simon Kovtyk