19 lines
364 B
JavaScript
19 lines
364 B
JavaScript
import { DesktopOutlined, UnorderedListOutlined } from "@ant-design/icons";
|
|
|
|
const menuConfig = [
|
|
{
|
|
path: "/user/reserve",
|
|
label: "设备预约",
|
|
icon: DesktopOutlined,
|
|
roles: ["USER"],
|
|
},
|
|
{
|
|
path: "/user/my-reservation",
|
|
label: "我的预约",
|
|
icon: UnorderedListOutlined,
|
|
roles: ["USER"],
|
|
},
|
|
];
|
|
|
|
export default menuConfig;
|