import React from "react"; import styles from "./index.less"; import { Menu, Switch } from "antd"; import { MailOutlined, AppstoreOutlined, SettingOutlined } from "@ant-design/icons"; const { SubMenu } = Menu; class Sider extends React.Component { state = { theme: "dark", current: "1" }; changeTheme = value => { this.setState({ theme: value ? "dark" : "light" }); }; handleClick = e => { console.log("click ", e); this.setState({ current: e.key }); }; render() { return (