Add i18n attributes
[oweals/peertube.git] / client / src / app / shared / video / video-feed.component.ts
1 import { Component, Input } from '@angular/core'
2
3 @Component({
4   selector: 'my-video-feed',
5   styleUrls: [ './video-feed.component.scss' ],
6   templateUrl: './video-feed.component.html'
7 })
8 export class VideoFeedComponent {
9   @Input() syndicationItems
10 }