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

@Component({
  selector: 'my-video-feed',
  styleUrls: [ './video-feed.component.scss' ],
  templateUrl: './video-feed.component.html'
})
export class VideoFeedComponent {
  @Input() syndicationItems: any
}