2019-06-26 12:35:47 +00:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
|
|
|
import { AppComponent } from './app.component';
|
2019-06-26 13:18:08 +00:00
|
|
|
import { MaterialModule } from 'material';
|
2019-06-26 12:35:47 +00:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
|
|
|
AppComponent
|
|
|
|
],
|
|
|
|
imports: [
|
2019-06-26 13:18:08 +00:00
|
|
|
BrowserModule,
|
|
|
|
MaterialModule
|
2019-06-26 12:35:47 +00:00
|
|
|
],
|
|
|
|
providers: [],
|
|
|
|
bootstrap: [AppComponent]
|
|
|
|
})
|
|
|
|
export class AppModule { }
|