]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-main/feeds/feed.component.ts
ee3731c1dd7da8b83949898789bcb218c9a054e0
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-main / feeds / feed.component.ts
1 import { Component, Input } from '@angular/core'
2 import { Syndication } from './syndication.model'
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 }