import React from "react"; import styles from "./index.less"; import { Modal, Button } from "antd"; class App extends React.Component { state = { loading: false, visible: false }; showModal = () => { this.setState({ visible: true }); }; handleOk = () => { this.setState({ loading: true }); setTimeout(() => { this.setState({ loading: false, visible: false }); }, 3000); }; handleCancel = () => { this.setState({ visible: false }); }; render() { const { visible, loading } = this.state; return (
Return , ]} >

Some contents...

Some contents...

Some contents...

Some contents...

Some contents...

); } } export default () => (
);