--- order: 99 title: zh-CN: Style debug en-US: Style debug debug: true --- ## zh-CN buggy! ## en-US buggy! ```jsx import { Menu, Switch } from 'antd'; import { MailOutlined, AppstoreOutlined } 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 ( <>

} title="Navigation One Long Long Long Long"> Option 1 Option 2 Option 3 Option 4 } title="Navigation Two"> Option 5 Option 6 Option 7 Option 8 Option 11 Option 12 ); } } ReactDOM.render(, mountNode); ```