aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/channel/avatar.component.ts
blob: 2201c04cac74884d1eee21ca7d9a698940358730 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { Component, Input } from '@angular/core'
import { VideoDetails } from '../video/video-details.model'

@Component({
  selector: 'avatar-channel',
  templateUrl: './avatar.component.html',
  styleUrls: [ './avatar.component.scss' ]
})
export class AvatarComponent {
  @Input() video: VideoDetails
}