FarmMapsLib/src/app/app.module.ts

21 lines
445 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-07-12 11:07:31 +00:00
import { CommonModule } from '@farmmaps/common';
2019-06-26 12:35:47 +00:00
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
2019-07-12 11:07:31 +00:00
MaterialModule,
CommonModule
2019-06-26 12:35:47 +00:00
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }