UNPKG

@mxenabled/rules-engine

Version:

UI for MX's rules engine Dwight

9 lines (8 loc) 242 B
import React from 'react'; type CancelConfirmDialogProps = { open: boolean; onClose: () => void; onDiscard: () => void; }; declare const CancelConfirmDialog: React.FC<CancelConfirmDialogProps>; export default CancelConfirmDialog;