red-ui/apps/red-ui/src/app/components/skeleton/dashboard-skeleton/dashboard-skeleton.component.ts
2022-12-21 13:19:41 +02:00

10 lines
339 B
TypeScript

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 {}