]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+video-channels/video-channels.module.ts
Upgrade to bootstrap 4 first step
[github/Chocobozzz/PeerTube.git] / client / src / app / +video-channels / video-channels.module.ts
CommitLineData
170726f5
C
1import { NgModule } from '@angular/core'
2import { SharedModule } from '../shared'
3import { VideoChannelsRoutingModule } from './video-channels-routing.module'
4import { VideoChannelsComponent } from './video-channels.component'
5import { VideoChannelVideosComponent } from './video-channel-videos/video-channel-videos.component'
6import { VideoChannelAboutComponent } from './video-channel-about/video-channel-about.component'
7
8@NgModule({
9 imports: [
10 VideoChannelsRoutingModule,
11 SharedModule
12 ],
13
14 declarations: [
15 VideoChannelsComponent,
16 VideoChannelVideosComponent,
17 VideoChannelAboutComponent
18 ],
19
20 exports: [
21 VideoChannelsComponent
22 ],
23
24 providers: []
25})
26export class VideoChannelsModule { }