2017-04-11 19:09:02 +03:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright Akveo. All Rights Reserved.
|
|
|
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
|
*/
|
|
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { HttpModule } from '@angular/http';
|
2017-04-13 14:24:23 +03:00
|
|
|
|
2017-04-11 19:09:02 +03:00
|
|
|
import {
|
|
|
|
|
NgaMenuModule,
|
|
|
|
|
NgaSidebarModule,
|
2017-04-13 14:24:23 +03:00
|
|
|
NgaThemeModule
|
2017-04-11 19:09:02 +03:00
|
|
|
} from '@nga/theme';
|
|
|
|
|
|
|
|
|
|
import { AppComponent } from './app.component';
|
2017-04-13 14:24:23 +03:00
|
|
|
import { CoreModule } from './@core/core.module';
|
|
|
|
|
import { PagesModule } from './pages/pages.module';
|
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
2017-04-11 19:09:02 +03:00
|
|
|
|
|
|
|
|
@NgModule({
|
2017-04-13 14:24:23 +03:00
|
|
|
declarations: [AppComponent],
|
2017-04-11 19:09:02 +03:00
|
|
|
imports: [
|
|
|
|
|
BrowserModule,
|
|
|
|
|
HttpModule,
|
2017-04-13 14:24:23 +03:00
|
|
|
NgaThemeModule.forRoot(),
|
|
|
|
|
NgaSidebarModule.forRoot(),
|
|
|
|
|
AppRoutingModule,
|
|
|
|
|
CoreModule,
|
|
|
|
|
PagesModule
|
2017-04-11 19:09:02 +03:00
|
|
|
],
|
|
|
|
|
bootstrap: [AppComponent],
|
|
|
|
|
})
|
2017-04-13 14:24:23 +03:00
|
|
|
export class AppModule {
|
|
|
|
|
}
|