19 lines
364 B
JavaScript
Raw Normal View History

2025-06-24 20:08:52 +08:00
import { DesktopOutlined, UnorderedListOutlined } from "@ant-design/icons";
const menuConfig = [
{
path: "/user/reserve",
label: "设备预约",
icon: DesktopOutlined,
roles: ["USER"],
},
2025-06-24 20:08:52 +08:00
{
path: "/user/my-reservation",
label: "我的预约",
icon: UnorderedListOutlined,
roles: ["USER"],
},
];
export default menuConfig;