12 lines
363 B
TypeScript
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>
|
|
);
|
|
}
|