import React from "react"; import styles from "./index.less"; import { Button } from "antd"; class App extends React.Component { state = { loading: false, iconLoading: false }; enterLoading = () => { this.setState({ loading: true }); }; enterIconLoading = () => { this.setState({ iconLoading: true }); }; render() { return (