]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/video/video-feed.component.ts
Add ability to list all local videos on client
[github/Chocobozzz/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 }