dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_TermsAndConditionsPageModule cluster_TermsAndConditionsPageModule_declarations cluster_TermsAndConditionsPageModule_exports TermsAndConditionsPage TermsAndConditionsPage TermsAndConditionsPageModule TermsAndConditionsPageModule TermsAndConditionsPage->TermsAndConditionsPageModule TermsAndConditionsPage TermsAndConditionsPage TermsAndConditionsPageModule->TermsAndConditionsPage

File

src/app/terms-and-conditions/terms-and-conditions.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 { TermsAndConditionsPage } from './terms-and-conditions.page';
import { TranslateModule } from '@ngx-translate/core';

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

@NgModule({
  imports: [
    CommonModule,
    FormsModule,
    IonicModule,
    TranslateModule,
    RouterModule.forChild(routes)
  ],
  declarations: [TermsAndConditionsPage],
  entryComponents: [TermsAndConditionsPage],
  exports: [TermsAndConditionsPage]
})
export class TermsAndConditionsPageModule {}

results matching ""

    No results matching ""