export interface CRUDTableProps { onCreate?: (item: C | T) => void; onDelete?: (item: T) => void; onChange?: (item: T) => void; }