import React, { useState } from 'react'; import { AppstoreOutlined, ContainerOutlined, DesktopOutlined, MailOutlined, PieChartOutlined, SettingOutlined, } from '@ant-design/icons'; import type { MenuProps } from 'antd'; import { ConfigProvider, Menu, Space, theme } from 'antd'; type MenuItem = Required['items'][number]; const items: MenuItem[] = [ { label: 'Navigation One', key: 'mail', icon: , }, { label: 'Navigation Two', key: 'app', icon: , disabled: true, }, { label: 'Navigation Three - Submenu', key: 'SubMenu', icon: , children: [ { type: 'group', label: 'Item 1', children: [ { label: 'Option 1', key: 'setting:1' }, { label: 'Option 2', key: 'setting:2' }, ], }, { type: 'group', label: 'Item 2', children: [ { label: 'Option 3', key: 'setting:3' }, { label: 'Option 4', key: 'setting:4' }, ], }, ], }, { key: 'alipay', label: ( Navigation Four - Link ), }, ]; const items2: MenuItem[] = [ { key: '1', icon: , label: 'Option 1', }, { key: '2', icon: , label: 'Option 2', }, { key: '3', icon: , label: 'Option 3', }, { key: 'sub1', label: 'Navigation One', icon: , children: [ { key: '5', label: 'Option 5' }, { key: '6', label: 'Option 6' }, { key: '7', label: 'Option 7' }, { key: '8', label: 'Option 8' }, ], }, { key: 'sub2', label: 'Navigation Two', icon: , children: [ { key: '9', label: 'Option 9' }, { key: '10', label: 'Option 10' }, { key: 'sub3', label: 'Submenu', children: [ { key: '11', label: 'Option 11' }, { key: '12', label: 'Option 12' }, ], }, ], }, ]; const App: React.FC = () => { const [current, setCurrent] = useState('mail'); const onClick: MenuProps['onClick'] = (e) => { console.log('click ', e); setCurrent(e.key); }; return ( ); }; export default App;