blob: f37d70c855fbb05d7cac77c48374fc567e23e8a0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import { Component, Input } from '@angular/core'
@Component({
selector: 'my-loader',
styleUrls: [ ],
templateUrl: './loader.component.html'
})
export class LoaderComponent {
@Input() loading: boolean
}
|