This commit is contained in:
2024-04-11 07:57:01 +03:00
parent 4ce516307d
commit 18157972a1
30 changed files with 911 additions and 50 deletions

View File

@@ -7,5 +7,6 @@ export interface CRUDTableProps<T extends MRT_RowData> {
onCreate?: (item: T) => void;
onDelete?: (item: T) => void;
onChange?: (item: T) => void;
onSelectionChange?: (selectedItems: T[]) => void;
tableRef?: RefObject<BaseTableRef<T>>
}