import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { MaterialModule } from 'material'; import { CommonModule } from '@farmmaps/common'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, MaterialModule, CommonModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }