custom-routes.ts 1.42 KB
Newer Older
Ooh-Ao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
import { Routes } from "@angular/router";

export const COUNTENT_ROUTES:Routes =
[
  {
    path: '',
    loadChildren: () => import('../../components/authentication/authentication.module').then(m => m.AuthenticationModule)
  },
  {
    path: '',
    loadChildren: () => import('../../components/authentication/errorpages/errorpages.module').then(m => m.ErrorpagesModule)
  },
  {
    path: '',
    loadChildren: () => import('../../components/authentication/createpassword/createpassword.module').then(m => m.CreatepasswordModule)
  },
  {
    path: '',
    loadChildren: () => import('../../components/authentication/forgotpassword/forgotpassword.module').then(m => m.ForgotpasswordModule)
  },
  {
    path: '',
    loadChildren: () => import('../../components/authentication/resetpassword/resetpassword.module').then(m => m.ResetpasswordModule)
  },
  {
    path: '',
    loadChildren: () => import('../../components/authentication/lockscreen/lockscreen.module').then(m => m.LockscreenModule)
  },
  {
    path: '',
    loadChildren: () => import('../../components/authentication/two-step-verification/two-step-verification.module').then(m => m.TwoStepVerificationModule)
  },
  {
    path: '',
    loadChildren: () => import('../../components/authentication/signin/signin.module').then(m => m.SigninModule)
  },
  {
    path: '',
    loadChildren: () => import('../../components/authentication/signup/signup.module').then(m => m.SignupModule)
  },
];