Files
wild-web-app/src/router/pages/ClusterPage.tsx
2025-10-12 17:44:54 +00:00

12 lines
363 B
TypeScript

import { ErrorBoundary } from '../../components';
import { ClusterServicesComponent } from '../../components/ClusterServicesComponent';
export function ClusterPage() {
// Note: onComplete callback removed as phase management will be handled differently with routing
return (
<ErrorBoundary>
<ClusterServicesComponent />
</ErrorBoundary>
);
}