Column

interface Column {
    id: string,
    label: string | React.ReactNode;
    renderColumn?: (item: any) => React.ReactNode,
    minWidth?: number,
    maxWidth?: number
}

Usage

import {Column} from 'uxp/components';

Last updated