app-routing.module.ts 1.53 KB
Newer Older
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
import { NgModule } from '@angular/core';
import { PreloadAllModules, RouterModule, Routes } from '@angular/router';

const routes: Routes = [
  {
    path: '',
    redirectTo: 'login',
    pathMatch: 'full'
  },
  {
    path: 'home',
    loadChildren: () => import('./home/home.module').then(m => m.HomePageModule)
  },
  {
    path: 'list',
    loadChildren: () => import('./list/list.module').then(m => m.ListPageModule)
  },
  {
    path: 'login',
    loadChildren: () => import('./auth/login/login.module').then( m => m.LoginPageModule)
  },
  {
    path: 'register',
    loadChildren: () => import('./auth/register/register.module').then( m => m.RegisterPageModule)
  },
  {
    path: 'myreservation',
    loadChildren: () => import('./myreservation/myreservation.module').then( m => m.MyreservationPageModule)
Priyanka Upadhye's avatar
Priyanka Upadhye committed
28
29
30
31
  },
  {
    path: 'hirebike',
    loadChildren: () => import('./hirebike/hirebike.module').then( m => m.HirebikePageModule)
gap95's avatar
gap95 committed
32
33
34
35
  },
  {
    path: 'ridehistory',
    loadChildren: () => import('./ridehistory/ridehistory.module').then( m => m.RidehistoryPageModule)
Priyanka Upadhye's avatar
Priyanka Upadhye committed
36
37
38
39
  },
  {
    path: 'help-line',
    loadChildren: () => import('./help-line/help-line.module').then( m => m.HelpLinePageModule)
40
41
42
43
  },
  {
    path: 'reset-password',
    loadChildren: () => import('./reset-password/reset-password.module').then( m => m.ResetPasswordPageModule)
Rron Jahja's avatar
Rron Jahja committed
44
45
  }

46
47
48
49
50
51
52
53
54
55
56
  

];

@NgModule({
  imports: [
    RouterModule.forRoot(routes, { preloadingStrategy: PreloadAllModules })
  ],
  exports: [RouterModule]
})
export class AppRoutingModule {}