blob: e543e9903bbf1855bc7e5d820b07f1f699634c30 (
plain) (
tree)
|
|
import { Component, Input } from '@angular/core'
import { Video } from './video.model'
@Component({
selector: 'my-video-thumbnail',
styleUrls: [ './video-thumbnail.component.scss' ],
templateUrl: './video-thumbnail.component.html'
})
export class VideoThumbnailComponent {
@Input() video: Video
@Input() nsfw = false
}
|