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