import React from "react"; import styles from "./index.less"; import { Modal, Button } from "antd"; class App extends React.Component { state = { ModalText: "Content of the modal", visible: false, confirmLoading: false }; showModal = () => { this.setState({ visible: true }); }; handleOk = () => { this.setState({ ModalText: "The modal will be closed after two seconds", confirmLoading: true }); setTimeout(() => { this.setState({ visible: false, confirmLoading: false }); }, 2000); }; handleCancel = () => { console.log("Clicked cancel button"); this.setState({ visible: false }); }; render() { const { visible, confirmLoading, ModalText } = this.state; return (
{ModalText}