Props

interface IProps {
    children: ReactNode;
    loading?: boolean;
    onCancel: () => void;
    onOk: () => Promise<void>;
    title: string;
    visible: boolean;
}

Properties

children: ReactNode
loading?: boolean
onCancel: () => void
onOk: () => Promise<void>
title: string
visible: boolean