--- order: 4 title: zh-CN: 主题 en-US: Menu Themes --- ## zh-CN 内建了两套主题 `light|dark`,默认 `light`。 ## en-US There are two built-in themes: 'light' and 'dark'. The default value is 'light'. ````jsx import { Menu, Icon, Switch } from 'antd'; const SubMenu = Menu.SubMenu; 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 (


Navigation One}> Option 1 Option 2 Option 3 Option 4 Navigtion Two}> Option 5 Option 6 Option 7 Option 8 Navigation Three}> Option 9 Option 10 Option 11 Option 12
); } } ReactDOM.render(, mountNode); ````