# 顶部导航 - order: 0 水平的顶部导航菜单。 --- ````jsx import { Menu, Icon } from 'antd'; const SubMenu = Menu.SubMenu; const MenuItemGroup = Menu.ItemGroup; const App = React.createClass({ getInitialState() { return { current: 'mail' }; }, handleClick(e) { console.log('click ', e); this.setState({ current: e.key }); }, render() { return ( 导航一 导航二 导航 - 子菜单}> 选项1 选项2 选项3 选项4 导航四 - 链接 ); } }); ReactDOM.render(, mountNode); ````