aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video/feed.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/shared/video/feed.component.ts')
-rw-r--r--client/src/app/shared/video/feed.component.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/client/src/app/shared/video/feed.component.ts b/client/src/app/shared/video/feed.component.ts
deleted file mode 100644
index 12507458f..000000000
--- a/client/src/app/shared/video/feed.component.ts
+++ /dev/null
@@ -1,11 +0,0 @@
1import { Component, Input } from '@angular/core'
2import { 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})
9export class FeedComponent {
10 @Input() syndicationItems: Syndication[]
11}