chore: Add onDelete and onDuplicate props to TableComponent

This commit is contained in:
anovazzi1 2024-06-07 11:08:57 -03:00
commit d309c2bd85

View file

@ -20,6 +20,8 @@ interface TableComponentProps extends AgGridReactProps {
alertTitle?: string;
alertDescription?: string;
editable?: boolean | string[];
onDelete?: (selectedRows: any) => void;
onDuplicate?: (selectedRows: any) => void;
}
const TableComponent = forwardRef<