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