Adding display attr to DataTableCell

This commit is contained in:
Rafael Dessotti 2021-04-21 18:44:21 -03:00
commit 0c2162ecc4
2 changed files with 9 additions and 8 deletions

View file

@ -33,6 +33,7 @@ export type DataTableRowId = string;
export interface DataTableCell {
key: DataTableKey;
value: DataTableValue;
display?: (item: Value) => DataTableValue;
}
export interface DataTableProps