Type Alias DataRender<T>

DataRender:
    | (props: { data: T; standard: () => JSX.Element }) => JSX.Element
    | undefined

A rendering customization function that takes props containing data and a standard rendering function, and returns a custom JSX element. This function enables developers to override how data is rendered in different parts of the BIM info panel.

Type Parameters

  • T

    The type of data to render.

The data to render.

The standard rendering function for the data.

A custom JSX element to render, or undefined to use the default rendering.