dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_ImageListingModule cluster_ImageListingModule_imports cluster_ImageListingModule_declarations ImageListingComponent ImageListingComponent ImageListingModule ImageListingModule ImageListingComponent->ImageListingModule CoreModule CoreModule CoreModule->ImageListingModule SharedModule SharedModule SharedModule->ImageListingModule

File

src/app/manage-learn/image-listing/image-listing.module.ts

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { TranslateModule } from '@ngx-translate/core';
import { CoreModule } from '../core/core.module';
import { SharedModule } from '../shared/shared.module';
import { ImageListingComponent } from './image-listing/image-listing.component';
import { RouterModule, Routes } from '@angular/router';
const routes: Routes = [
  {
    path: '',
    component: ImageListingComponent,
  },
];
@NgModule({
  declarations: [ImageListingComponent],
  imports: [
    CommonModule,
    TranslateModule.forChild(),
    RouterModule.forChild(routes),
    SharedModule,
    IonicModule,
    FormsModule,
    CoreModule,
  ],
})
export class ImageListingModule {}

results matching ""

    No results matching ""