aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video/video-feed.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/shared/video/video-feed.component.ts')
-rw-r--r--client/src/app/shared/video/video-feed.component.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/client/src/app/shared/video/video-feed.component.ts b/client/src/app/shared/video/video-feed.component.ts
new file mode 100644
index 000000000..41257ca99
--- /dev/null
+++ b/client/src/app/shared/video/video-feed.component.ts
@@ -0,0 +1,14 @@
1import { Component, Input, OnChanges, SimpleChanges } from '@angular/core'
2
3@Component({
4 selector: 'my-video-feed',
5 styleUrls: [ './video-feed.component.scss' ],
6 templateUrl: './video-feed.component.html'
7})
8export class VideoFeedComponent implements OnChanges {
9 @Input() syndicationItems
10
11 ngOnChanges (changes: SimpleChanges) {
12 this.syndicationItems = changes.syndicationItems.currentValue
13 }
14}