Props

interface IProps {
    cancelButtonProps?: ButtonProps;
    cancelButtonText?: string;
    children: ReactNode;
    initialValues?: object;
    loading?: boolean;
    okButtonProps?: ButtonProps;
    okButtonText?: string;
    onCancel?: () => void;
    onOk?: (values: any) => Promise<void>;
    title: string;
    visible: boolean;
}

Properties

cancelButtonProps?: ButtonProps
cancelButtonText?: string
children: ReactNode
initialValues?: object
loading?: boolean
okButtonProps?: ButtonProps
okButtonText?: string
onCancel?: () => void
onOk?: (values: any) => Promise<void>
title: string
visible: boolean