10 lines
348 B
TypeScript
10 lines
348 B
TypeScript
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 {}
|