New dashboard look & feel
[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 { DashboardModule } from './dashboard/dashboard.module';
6 import { BuildModule } from './build/build.module';
7 import { ProjectsModule } from './projects/projects.module';
8 import { SdksModule } from './sdks/sdks.module';
9 import { PagesRoutingModule } from './pages-routing.module';
10 import { NotificationsComponent } from './notifications/notifications.component';
11 import { ThemeModule } from '../@theme/theme.module';
12
13 const PAGES_COMPONENTS = [
14   PagesComponent,
15   NotificationsComponent,
16 ];
17
18 @NgModule({
19   imports: [
20     PagesRoutingModule,
21     ThemeModule,
22     BuildModule,
23     DashboardModule,
24     ProjectsModule,
25     SdksModule,
26     ToasterModule,
27   ],
28   declarations: [
29     ...PAGES_COMPONENTS,
30   ],
31 })
32 export class PagesModule {
33 }