dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_SectionListingPageModule cluster_SectionListingPageModule_declarations cluster_SectionListingPageModule_imports SectionListingPage SectionListingPage SectionListingPageModule SectionListingPageModule SectionListingPage->SectionListingPageModule CoreModule CoreModule CoreModule->SectionListingPageModule SharedModule SharedModule SharedModule->SectionListingPageModule

File

src/app/manage-learn/section-listing/section-listing.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 { SectionListingPage } from './section-listing.page';
import { CoreModule } from '../core/core.module';
import { SharedModule } from '../shared/shared.module';
import { TranslateModule } from '@ngx-translate/core';

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

@NgModule({
  imports: [
    CommonModule,
    FormsModule,
    IonicModule,
    RouterModule.forChild(routes),
    CoreModule,
    SharedModule,
    TranslateModule
  ],
  declarations: [SectionListingPage]
})
export class SectionListingPageModule {}

results matching ""

    No results matching ""