TableCellProps

Props for TableCell component

Definition

export interface TableCellProps {
    /** The row data object */
    row: any;
    /** The column definition with calculated widths */
    column: ExtendedColumn;
    /** Custom cell renderer function */
    renderCell?: (row: any, column: ExtendedColumn) => React.ReactNode;
}

Usage

import { TableCellProps } from 'uxp/components';

Last updated