]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-video/shared-video.module.ts
Refactor views component
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-video / shared-video.module.ts
1
2 import { NgModule } from '@angular/core'
3 import { SharedMainModule } from '../shared-main/shared-main.module'
4 import { VideoViewsCounterComponent } from './video-views-counter.component'
5
6 @NgModule({
7 imports: [
8 SharedMainModule
9 ],
10
11 declarations: [
12 VideoViewsCounterComponent
13 ],
14
15 exports: [
16 VideoViewsCounterComponent
17 ]
18 })
19 export class SharedVideoModule { }