import Icon, { DesktopOutlined } from '@ant-design/icons' import { AdminRouterItem } from "../../router"; import WeCom from "./weCom/index"; import WeGZH from "./weGZH/index"; import WeComIcon from "@src/assets/images/publishContent/wxCom.svg?react"; import WeGZHIcon from "@src/assets/images/publishContent/wxGzh.svg?react"; import { Outlet } from "react-router-dom"; const demoRoutes: AdminRouterItem[] = [ { path: 'publishContent', element: , meta: { label: "发布内容管理", title: "发布内容管理", key: "/publishContent", icon: , }, children: [ { path: 'wegzh', element: , meta: { label: "公众号", title: "公众号", key: "/publishContent/wegzh", icon: , } }, { path: 'wecom', element: , meta: { label: "企微", title: "企微", key: "/publishContent/wecom", icon: , } }, ] } ] export default demoRoutes