mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-19 08:50:13 +01:00
22 lines
502 B
TypeScript
22 lines
502 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
import { AgmCoreModule } from '@agm/core';
|
||
|
|
import { LeafletModule } from '@asymmetrik/angular2-leaflet';
|
||
|
|
|
||
|
|
import { SharedModule } from '../../shared.module';
|
||
|
|
|
||
|
|
import { MapsRoutingModule, routedComponents } from './maps-routing.module';
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [
|
||
|
|
SharedModule,
|
||
|
|
AgmCoreModule.forRoot(),
|
||
|
|
LeafletModule.forRoot(),
|
||
|
|
MapsRoutingModule,
|
||
|
|
],
|
||
|
|
exports: [],
|
||
|
|
declarations: [
|
||
|
|
...routedComponents,
|
||
|
|
],
|
||
|
|
})
|
||
|
|
export class MapsModule { }
|