1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/frontend/app/gallery/grid/photo/loading/loading.photo.grid.gallery.component.ts

16 lines
340 B
TypeScript
Raw Normal View History

2018-03-30 15:30:30 -04:00
import {Component, Input} from '@angular/core';
2016-06-17 11:25:15 +02:00
@Component({
2018-05-03 19:17:08 -04:00
selector: 'app-gallery-grid-photo-loading',
templateUrl: './loading.photo.grid.gallery.component.html',
styleUrls: ['./loading.photo.grid.gallery.component.css'],
2016-06-17 11:25:15 +02:00
})
export class GalleryPhotoLoadingComponent {
@Input() animate: boolean;
2017-07-17 23:11:35 +02:00
@Input() error: boolean;
2016-06-23 22:25:16 +02:00
2016-06-17 11:25:15 +02:00
}