blob: 6922153c0df6e898159ad9c56b7b0fa62cfc94b1 (
plain) (
tree)
|
|
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
}
|