Skip to content

Commit c574a10

Browse files
committed
feat(google-maps): Add map-marker component
Fix formatting on google maps module.
1 parent 1722951 commit c574a10

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src/google-maps/google-maps-module.ts

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,17 @@
99
import {NgModule} from '@angular/core';
1010

1111
import {MapMarker, MapMarkerModule} from './map-marker/index';
12-
1312
import {GoogleMap, GoogleMapModule} from './google-map/index';
1413

1514
@NgModule({
16-
imports: [GoogleMapModule, MapMarkerModule,],
17-
exports: [GoogleMap, MapMarker,],
15+
imports: [
16+
GoogleMapModule,
17+
MapMarkerModule,
18+
],
19+
exports: [
20+
GoogleMap,
21+
MapMarker,
22+
],
1823
})
1924
export class GoogleMapsModule {
2025
}

0 commit comments

Comments
 (0)