]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/about/about.module.ts
Filter by category (#720)
[github/Chocobozzz/PeerTube.git] / client / src / app / about / about.module.ts
1 import { NgModule } from '@angular/core'
2
3 import { AboutRoutingModule } from './about-routing.module'
4 import { AboutComponent } from './about.component'
5 import { SharedModule } from '../shared'
6
7 @NgModule({
8 imports: [
9 AboutRoutingModule,
10 SharedModule
11 ],
12
13 declarations: [
14 AboutComponent
15 ],
16
17 exports: [
18 AboutComponent
19 ],
20
21 providers: [
22 ]
23 })
24 export class AboutModule { }