import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { MapComponent } from './map/map.component';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser'
@NgModule({
  imports: [
    CommonModule,
    FormsModule,
    BrowserModule
  ],
  declarations: [ MapComponent ],
  exports: [ MapComponent ]
})
export class OlglibModule {
  static forRoot() {
    return {
      ngModule: OlglibModule
    }
  }
}
