ngx-admin/src/app/app.module.ts

30 lines
815 B
TypeScript
Raw Normal View History

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';
2017-05-11 18:31:55 +03:00
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
2017-04-11 19:09:02 +03:00
import { NgModule } from '@angular/core';
import { HttpModule } from '@angular/http';
2017-04-13 14:24:23 +03:00
import { CoreModule } from './@core/core.module';
2017-04-11 19:09:02 +03:00
import { AppComponent } from './app.component';
2017-04-13 14:24:23 +03:00
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,
2017-05-11 18:31:55 +03:00
BrowserAnimationsModule,
2017-04-11 19:09:02 +03:00
HttpModule,
2017-04-13 14:24:23 +03:00
AppRoutingModule,
CoreModule,
2017-04-11 19:09:02 +03:00
],
bootstrap: [AppComponent],
})
2017-04-13 14:24:23 +03:00
export class AppModule {
}