Menu

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.

Enterprise Open source

renderOrCallToRender() function

renderOrCallToRender() function

Given react node or function returns element accordingly

Signature

typescript
export declare function renderOrCallToRender<TProps = any>(itemToRender: ((props?: TProps) => React.ReactNode) | React.ReactNode, props?: TProps): React.ReactNode;

Import

typescript
import { renderOrCallToRender } from '@grafana/ui';

Parameters

ParameterTypeDescription
itemToRender((props?: TProps) => React.ReactNode) | React.ReactNode
propsTPropsprops to be passed to the function if item provided as such

Returns:

React.ReactNode