Adding display attr to DataTableCell (#615)

This commit is contained in:
rafadess 2021-04-30 20:18:47 -03:00 committed by GitHub
commit 47c79b16c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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