blob: 12507458fc9d9ca8e483fe8c836fce5df821946a (
plain) (
tree)
|
|
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[]
}
|