import React from "react"; import styles from "./index.less"; import { Modal, Button } from "antd"; import { ExclamationCircleOutlined } from "@ant-design/icons"; const { confirm } = Modal; function showConfirm() { confirm({ title: "Do you want to delete these items?", icon: , content: "When clicked the OK button, this dialog will be closed after 1 second", onOk() { return new Promise((resolve, reject) => { setTimeout(Math.random() > 0.5 ? resolve : reject, 1000); }).catch(() => console.log("Oops errors!")); }, onCancel() {} }); } export default () => (
);