// TODO frha: Denna borde flyttas till @fb/common/componentDirectives/maps // Angular // import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; // Components // import { FbGoogleMapsComponent } from './googleMaps/fb-google-maps.component'; // Services // import { FbGoogleMapsService } from './googleMaps/fb-google-maps.service'; @NgModule({ imports: [ CommonModule ], declarations: [ FbGoogleMapsComponent ], entryComponents: [ FbGoogleMapsComponent ], providers: [ FbGoogleMapsService ] }) export class FbMapsModule {}