Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.
renderOrCallToRender() function
renderOrCallToRender() function
Given react node or function returns element accordingly
Signature
export declare function renderOrCallToRender<TProps = any>(itemToRender: ((props?: TProps) => React.ReactNode) | React.ReactNode, props?: TProps): React.ReactNode;
Import
import { renderOrCallToRender } from '@grafana/ui';
Parameters
Parameter | Type | Description |
---|---|---|
itemToRender | ((props?: TProps) => React.ReactNode) | React.ReactNode | |
props | TProps | props to be passed to the function if item provided as such |
Returns:
React.ReactNode