mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
24 lines
632 B
TypeScript
24 lines
632 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { GoogleMapsModule } from '@angular/google-maps';
|
|
import { LeafletModule } from '@asymmetrik/ngx-leaflet';
|
|
import { NgxEchartsModule } from 'ngx-echarts';
|
|
import { NbCardModule } from '@nebular/theme';
|
|
|
|
import { ThemeModule } from '../../@theme/theme.module';
|
|
import { MapsRoutingModule, routedComponents } from './maps-routing.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
ThemeModule,
|
|
GoogleMapsModule,
|
|
LeafletModule,
|
|
MapsRoutingModule,
|
|
NgxEchartsModule,
|
|
NbCardModule,
|
|
],
|
|
exports: [],
|
|
declarations: [
|
|
...routedComponents,
|
|
],
|
|
})
|
|
export class MapsModule { }
|