()
| 24 | |
| 25 | // 加载中组件 |
| 26 | const LoadingFallback = () => ( |
| 27 | <div style={{ display: 'flex', justifyContent: 'center', alignItems: 'center', height: '100vh' }}> |
| 28 | <Spin size="large" tip="加载中..." /> |
| 29 | </div> |
| 30 | ) |
| 31 | |
| 32 | // 受保护的路由组件 |
| 33 | const ProtectedRoute = ({ children, allowedRoles }: { children: React.ReactNode; allowedRoles?: string[] }) => { |
nothing calls this directly
no outgoing calls
no test coverage detected