common-ui/src/lib/loading/full-page-loading-indicator/full-page-loading-indicator.component.ts
2022-07-18 16:32:08 +03:00

12 lines
418 B
TypeScript

import { ChangeDetectionStrategy, Component } from '@angular/core';
import { LoadingService } from '../loading.service';
@Component({
selector: 'iqser-full-page-loading-indicator',
templateUrl: './full-page-loading-indicator.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class FullPageLoadingIndicatorComponent {
constructor(readonly loadingService: LoadingService) {}
}