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

28 lines
682 B
TypeScript
Raw Normal View History

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 { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
2018-01-25 08:03:36 +00:00
import { MaterialModule } from './commons/ui/material/material.module';
import { MemberModule } from 'app/modules/member/member.module';
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,
MaterialModule,
MemberModule,
2018-01-25 08:03:29 +00:00
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }