import { ChangeDetectionStrategy, Component } from '@angular/core'; import { ServicePageView } from '../service-page-view/service-page-view'; @Component({ selector: 'app-services-clusters-page', changeDetection: ChangeDetectionStrategy.OnPush, imports: [ServicePageView], templateUrl: './clusters.html', }) export class ServicesClustersPage {}