3f3be8e257319db0162e1f405c484460c548d361
[src/xds/xds-agent.git] / webapp / src / app / pages / pages.module.ts
1 import { NgModule } from '@angular/core';
2 import { ToasterModule } from 'angular2-toaster';
3
4 import { PagesComponent } from './pages.component';
5 import { AboutModule } from './about/about.module';
6 import { DashboardModule } from './dashboard/dashboard.module';
7 import { BuildModule } from './build/build.module';
8 import { ProjectsModule } from './projects/projects.module';
9 import { SdksModule } from './sdks/sdks.module';
10 import { PagesRoutingModule } from './pages-routing.module';
11 import { NotificationsComponent } from './notifications/notifications.component';
12 import { ThemeModule } from '../@theme/theme.module';
13
14 const PAGES_COMPONENTS = [
15   PagesComponent,
16   NotificationsComponent,
17 ];
18
19 @NgModule({
20   imports: [
21     PagesRoutingModule,
22     ThemeModule,
23     AboutModule,
24     BuildModule,
25     DashboardModule,
26     ProjectsModule,
27     SdksModule,
28     ToasterModule,
29   ],
30   declarations: [
31     ...PAGES_COMPONENTS,
32   ],
33 })
34 export class PagesModule {
35 }