import Icon, { DesktopOutlined } from '@ant-design/icons' import { AdminRouterItem } from "../../router"; import React, { Suspense } from 'react'; import WeComIcon from "@src/assets/images/publishContent/wxCom.svg?react"; import WeGZHIcon from "@src/assets/images/publishContent/wxGzh.svg?react"; import LogoIcon from "@src/assets/images/login/logo.svg?react"; import { Outlet } from "react-router-dom"; // Lazy load components const WeCom = React.lazy(() => import('./weCom/index')); const WeGZH = React.lazy(() => import('./weGZH/index')); // Loading fallback component // eslint-disable-next-line react-refresh/only-export-components const LazyLoadingFallback = () => (