Ei kuvausta

forgot-password-routing.module.ts 380B

123456789101112131415161718
  1. import { NgModule } from '@angular/core';
  2. import { Routes, RouterModule } from '@angular/router';
  3. import { ForgotPasswordPage } from './forgot-password.page';
  4. const routes: Routes = [
  5. {
  6. path: '',
  7. component: ForgotPasswordPage
  8. }
  9. ];
  10. @NgModule({
  11. imports: [RouterModule.forChild(routes)],
  12. exports: [RouterModule],
  13. })
  14. export class ForgotPasswordPageRoutingModule {}