aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/video/feed.component.ts
blob: 12507458fc9d9ca8e483fe8c836fce5df821946a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                 
import { Component, Input } from '@angular/core'
import { Syndication } from '@app/shared/video/syndication.model'

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