aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main/feeds/feed.component.ts
blob: ee3731c1dd7da8b83949898789bcb218c9a054e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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[]
}