1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/gallery/grid/photo/loading/loading.photo.grid.gallery.component.ts

16 lines
336 B
TypeScript
Raw Normal View History

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