mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 16:00:14 +01:00
29 lines
815 B
TypeScript
29 lines
815 B
TypeScript
/**
|
|
* @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 { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
import { NgModule } from '@angular/core';
|
|
import { HttpModule } from '@angular/http';
|
|
|
|
import { CoreModule } from './@core/core.module';
|
|
|
|
import { AppComponent } from './app.component';
|
|
import { PagesModule } from './pages/pages.module';
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
|
|
@NgModule({
|
|
declarations: [AppComponent],
|
|
imports: [
|
|
BrowserModule,
|
|
BrowserAnimationsModule,
|
|
HttpModule,
|
|
AppRoutingModule,
|
|
CoreModule,
|
|
],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule {
|
|
}
|