dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_DistrictMappingPageModule cluster_DistrictMappingPageModule_providers cluster_DistrictMappingPageModule_declarations DistrictMappingPage DistrictMappingPage DistrictMappingPageModule DistrictMappingPageModule DistrictMappingPage->DistrictMappingPageModule LocationHandler LocationHandler LocationHandler->DistrictMappingPageModule ProfileHandler ProfileHandler ProfileHandler->DistrictMappingPageModule

File

src/app/district-mapping/district-mapping.module.ts

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { Routes, RouterModule } from '@angular/router';

import { IonicModule } from '@ionic/angular';

import { DistrictMappingPage } from './district-mapping.page';
import { TranslateModule } from '@ngx-translate/core';
import { PipesModule } from '@app/pipes/pipes.module';
import { CommonFormElementsModule } from 'common-form-elements';
import { LocationHandler } from '@app/services/location-handler';
import {ProfileHandler} from '@app/services/profile-handler';

const routes: Routes = [
  {
    path: '',
    component: DistrictMappingPage
  }
];

@NgModule({
  imports: [
    CommonModule,
    FormsModule,
    IonicModule,
    RouterModule.forChild(routes),
    TranslateModule.forChild(),
    PipesModule,
    CommonFormElementsModule

  ],
  declarations: [DistrictMappingPage],
  providers: [LocationHandler, ProfileHandler]
})
export class DistrictMappingPageModule {}

results matching ""

    No results matching ""