Files
model-platform/frontend/app/routes/system.tsx
T
2026-08-25 20:20:14 +08:00

11 lines
326 B
TypeScript

import { Outlet } from "react-router";
/**
* 系统管理父布局:只负责挂载子路由。
* 页面级 state 由子路由 (UserManagementRoute / ProjectManagementRoute) 持有,
* 并在 user / workspace 切换时通过 key 重挂载重置。
*/
export default function SystemAdminRoute() {
return <Outlet />;
}