aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-video/video-views-counter.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/shared/shared-video/video-views-counter.component.ts')
-rw-r--r--client/src/app/shared/shared-video/video-views-counter.component.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/client/src/app/shared/shared-video/video-views-counter.component.ts b/client/src/app/shared/shared-video/video-views-counter.component.ts
new file mode 100644
index 000000000..17e6e37b9
--- /dev/null
+++ b/client/src/app/shared/shared-video/video-views-counter.component.ts
@@ -0,0 +1,11 @@
1import { Component, Input } from '@angular/core'
2import { Video } from '../shared-main'
3
4@Component({
5 selector: 'my-video-views-counter',
6 styleUrls: [ './video-views-counter.component.scss' ],
7 templateUrl: './video-views-counter.component.html'
8})
9export class VideoViewsCounterComponent {
10 @Input() video: Video
11}