import React from "react"; import styles from "./index.less"; import { Skeleton, Switch, Card, Icon, Avatar } from "antd"; const { Meta } = Card; class App extends React.Component { state = { loading: true }; onChange = checked => { this.setState({ loading: !checked }); }; render() { const { loading } = this.state; return (