123
This commit is contained in:
5
types/CrudTable/CrudTable.tsx
Normal file
5
types/CrudTable/CrudTable.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
export interface CRUDTableProps<T, C = T> {
|
||||
onCreate?: (item: C | T) => void;
|
||||
onDelete?: (item: T) => void;
|
||||
onChange?: (item: T) => void;
|
||||
}
|
||||
Reference in New Issue
Block a user