]>
Commit | Line | Data |
---|---|---|
c199c427 | 1 | import { Component, Input } from '@angular/core' |
67ed6552 | 2 | import { Syndication } from './syndication.model' |
c199c427 C |
3 | |
4 | @Component({ | |
5 | selector: 'my-feed', | |
6 | styleUrls: [ './feed.component.scss' ], | |
7 | templateUrl: './feed.component.html' | |
8 | }) | |
9 | export class FeedComponent { | |
10 | @Input() syndicationItems: Syndication[] | |
11 | } |