import { ChangeDetectionStrategy, Component } from '@angular/core'; @Component({ selector: 'dks-control-center-dashboard', templateUrl: './control-center-dashboard.component.html', styleUrls: ['./control-center-dashboard.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush, }) export class ControlCenterDashboardComponent {}