mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
0d3b8823e4
adding thumbnail loader for faces
16 lines
340 B
TypeScript
16 lines
340 B
TypeScript
import {Component, Input} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-gallery-grid-photo-loading',
|
|
templateUrl: './loading.photo.grid.gallery.component.html',
|
|
styleUrls: ['./loading.photo.grid.gallery.component.css'],
|
|
})
|
|
export class GalleryPhotoLoadingComponent {
|
|
|
|
@Input() animate: boolean;
|
|
@Input() error: boolean;
|
|
|
|
|
|
}
|
|
|