BaseProps
Definition
export interface BaseProps {
/** Enable this action column */
enable: boolean;
/** Label to display in column header */
label?: string;
/** Width of the column in pixels */
width?: number;
}Usage
import { BaseProps } from 'uxp/components';Last updated