frontend
    Preparing search index...

    Interface ConfirmDialogProps

    Props for the ConfirmDialog component.

    interface ConfirmDialogProps {
        cancelLabel: string;
        confirmLabel: string;
        message: string;
        onCancel: () => void;
        onConfirm: () => void;
        open: boolean;
        title: string;
    }
    Index

    Properties

    cancelLabel: string
    confirmLabel: string
    message: string
    onCancel: () => void
    onConfirm: () => void
    open: boolean
    title: string