UNPKG

@react-awesome-query-builder/mui

Version:
11 lines (10 loc) 272 B
export default ({onOk, okText, cancelText, title, confirmFn}) => { confirmFn({ description: title || "Are you sure?", title: null, confirmationText: okText || "Ok", cancellationText: cancelText || "Cancel", }) .then(onOk) .catch(() => {}); };