FarmMapsLib/src/app/app.module.ts

19 lines
377 B
TypeScript
Raw Normal View History

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