IRenderUIItemProps

Definition

export interface IRenderUIItemProps {
    id: string,
    label?: string,
    description?: string,
    component: any,
    uiProps?: any,
    title?: string,
    showDefaultHeader?: boolean // default is true. hide the header if set to false
}

Usage

import { IRenderUIItemProps } from 'uxp/components';

Last updated