15 lines
379 B
TypeScript
15 lines
379 B
TypeScript
import { Component, ViewEncapsulation } from '@angular/core';
|
|
import { LoaderService } from '../services/loader.service';
|
|
|
|
@Component({
|
|
selector: 'app-spinner',
|
|
templateUrl: './spinner.component.html',
|
|
styleUrl: './spinner.component.scss',
|
|
encapsulation: ViewEncapsulation.ShadowDom
|
|
})
|
|
export class SpinnerComponent {
|
|
|
|
constructor(public loader: LoaderService) {
|
|
}
|
|
}
|