Implement video channel views
[oweals/peertube.git] / client / src / app / +video-channels / video-channels.module.ts
diff --git a/client/src/app/+video-channels/video-channels.module.ts b/client/src/app/+video-channels/video-channels.module.ts
new file mode 100644 (file)
index 0000000..a09ea6f
--- /dev/null
@@ -0,0 +1,26 @@
+import { NgModule } from '@angular/core'
+import { SharedModule } from '../shared'
+import { VideoChannelsRoutingModule } from './video-channels-routing.module'
+import { VideoChannelsComponent } from './video-channels.component'
+import { VideoChannelVideosComponent } from './video-channel-videos/video-channel-videos.component'
+import { VideoChannelAboutComponent } from './video-channel-about/video-channel-about.component'
+
+@NgModule({
+  imports: [
+    VideoChannelsRoutingModule,
+    SharedModule
+  ],
+
+  declarations: [
+    VideoChannelsComponent,
+    VideoChannelVideosComponent,
+    VideoChannelAboutComponent
+  ],
+
+  exports: [
+    VideoChannelsComponent
+  ],
+
+  providers: []
+})
+export class VideoChannelsModule { }