import React from "react"; import styles from "./index.less"; import { Spin, Alert, Switch } from "antd"; class Card extends React.Component { state = { loading: false }; toggle = value => { this.setState({ loading: value }); }; render() { const container = ( ); return (
{container}
Loading state:
); } } export default () => (
);