]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - feed.component.ts
12507458fc9d9ca8e483fe8c836fce5df821946a
[github/Chocobozzz/PeerTube.git] / feed.component.ts
1 import { Component, Input } from '@angular/core'
2 import { Syndication } from '@app/shared/video/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 }