10 lines
269 B
TypeScript
10 lines
269 B
TypeScript
|
|
import { Component } from '@angular/core';
|
||
|
|
import { ProgressSpinner } from 'primeng/progressspinner';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'shared-page-loading',
|
||
|
|
templateUrl: './page-loading.component.html',
|
||
|
|
imports: [ProgressSpinner],
|
||
|
|
})
|
||
|
|
export class PageLoadingComponent {}
|