gallery-frontend/src/app/gallery/thumbnail/thumbnail.component.ts
Danyi Dávid 8f98dcb5e1 * deploy added
* semantic-ui removed
* image display reworked
2017-08-12 18:36:49 +02:00

21 lines
437 B
TypeScript

import {Component, Input, OnInit} from '@angular/core';
import {ThumbLabel} from "../shared/thumb-label.model";
@Component({
selector: 'app-thumbnail',
templateUrl: './thumbnail.component.html',
styleUrls: ['./thumbnail.component.css']
})
export class ThumbnailComponent implements OnInit {
@Input() image: string = "";
@Input() label: ThumbLabel = null;
@Input() target: any = {};
constructor() {}
ngOnInit() {}
}