TableCellProps
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';Related Types
Last updated