New dashboard look & feel
[src/xds/xds-agent.git] / webapp / src / app / app.module.ts
1 /**
2  * @license
3  * Copyright Akveo. All Rights Reserved.
4  * Licensed under the MIT License. See License.txt in the project root for license information.
5  */
6 import { APP_BASE_HREF } from '@angular/common';
7 import { BrowserModule } from '@angular/platform-browser';
8 import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
9 import { NgModule } from '@angular/core';
10 import { HttpModule } from '@angular/http';
11 import { CoreXdsModule } from './@core-xds/core-xds.module';
12
13 import { AppComponent } from './app.component';
14 import { AppRoutingModule } from './app-routing.module';
15 import { ThemeModule } from './@theme/theme.module';
16 import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
17
18 @NgModule({
19   declarations: [AppComponent],
20   imports: [
21     BrowserModule,
22     BrowserAnimationsModule,
23     HttpModule,
24     AppRoutingModule,
25
26     NgbModule.forRoot(),
27     ThemeModule.forRoot(),
28     CoreXdsModule.forRoot(),
29   ],
30   bootstrap: [AppComponent],
31   providers: [
32     { provide: APP_BASE_HREF, useValue: '/' },
33   ],
34 })
35 export class AppModule {
36 }