import React from "react"; import styles from "./index.less"; import { Skeleton, Switch, Card, Avatar } from "antd"; import { EditOutlined, EllipsisOutlined, SettingOutlined } from "@ant-design/icons"; const { Meta } = Card; class App extends React.Component { state = { loading: true }; onChange = checked => { this.setState({ loading: !checked }); }; render() { const { loading } = this.state; return (
} title="Card title" description="This is the description" /> , , ]} > } title="Card title" description="This is the description" />
); } } export default () => (
);