25 lines
437 B
TypeScript
25 lines
437 B
TypeScript
import {
|
|
UploadOutlined,
|
|
UserOutlined,
|
|
VideoCameraOutlined,
|
|
} from '@ant-design/icons';
|
|
const stadiumMenu =
|
|
{
|
|
key: '/project6',
|
|
icon: <UserOutlined />,
|
|
label: '分类管理',
|
|
children: [
|
|
{
|
|
key: '/project4',
|
|
icon: <VideoCameraOutlined />,
|
|
label: '球场列表',
|
|
},
|
|
{
|
|
key: '/project5',
|
|
icon: <UploadOutlined />,
|
|
label: '球场列表',
|
|
},
|
|
]
|
|
};
|
|
|
|
export default stadiumMenu; |