import React from "react"; import styles from "./index.less"; import { Modal, Button } from "antd"; const { confirm } = Modal; function showConfirm() { confirm({ title: "Do you Want to delete these items?", content: "Some descriptions", onOk() { console.log("OK"); }, onCancel() { console.log("Cancel"); } }); } function showDeleteConfirm() { confirm({ title: "Are you sure delete this task?", content: "Some descriptions", okText: "Yes", okType: "danger", cancelText: "No", onOk() { console.log("OK"); }, onCancel() { console.log("Cancel"); } }); } function showPropsConfirm() { confirm({ title: "Are you sure delete this task?", content: "Some descriptions", okText: "Yes", okType: "danger", okButtonProps: { disabled: true }, cancelText: "No", onOk() { console.log("OK"); }, onCancel() { console.log("Cancel"); } }); } export default () => (
);