13 lines
441 B
TypeScript
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) {}
|
|
}
|