common-ui/src/lib/loading/full-page-loading-indicator/full-page-loading-indicator.component.ts
2024-12-05 12:49:51 +02:00

13 lines
441 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,
standalone: false,
})
export class FullPageLoadingIndicatorComponent {
constructor(readonly loadingService: LoadingService) {}
}