Ship the final German and English copy, compose every route from shared page primitives, and cover claims, parity and contact briefing in tests. Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
353 B
TypeScript
11 lines
353 B
TypeScript
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 {}
|