overflow-webapp/src/app/app.module.ts

26 lines
660 B
TypeScript
Raw Normal View History

2018-01-29 04:22:32 +00:00
import { NgModule } from '@angular/core';
2018-01-25 08:03:29 +00:00
import { BrowserModule } from '@angular/platform-browser';
2018-01-25 08:03:36 +00:00
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
2018-01-25 08:03:29 +00:00
import { AppRoutingModule } from './app-routing.module';
2018-01-29 06:28:28 +00:00
import { AppReducerModule } from './app-reducer.module';
2018-01-25 08:03:36 +00:00
import { MaterialModule } from './commons/ui/material/material.module';
2018-01-29 06:28:28 +00:00
import { AppComponent } from './app.component';
2018-01-25 08:03:29 +00:00
@NgModule({
declarations: [
2018-01-25 08:03:36 +00:00
AppComponent,
2018-01-25 08:03:29 +00:00
],
imports: [
BrowserModule,
2018-01-25 08:03:36 +00:00
BrowserAnimationsModule,
AppRoutingModule,
2018-01-29 06:28:28 +00:00
AppReducerModule,
2018-01-25 08:03:36 +00:00
MaterialModule,
2018-01-25 08:03:29 +00:00
],
bootstrap: [AppComponent]
})
export class AppModule { }