blob: ee3731c1dd7da8b83949898789bcb218c9a054e0 (
plain) (
tree)
|
|
import { Component, Input } from '@angular/core'
import { Syndication } from './syndication.model'
@Component({
selector: 'my-feed',
styleUrls: [ './feed.component.scss' ],
templateUrl: './feed.component.html'
})
export class FeedComponent {
@Input() syndicationItems: Syndication[]
}
|