This commit is contained in:
Olu Amey
2020-09-12 04:14:02 -04:00
parent 150c2fe2d4
commit 5de3a31b73
10 changed files with 76 additions and 10 deletions
+10 -1
View File
@@ -4,7 +4,16 @@ import { PreloadAllModules, RouterModule, Routes } from '@angular/router';
const routes: Routes = [
{
path: '',
loadChildren: () => import('./tabs/tabs.module').then(m => m.TabsPageModule)
loadChildren: () => import('./home/home.module').then(m => m.HomePageModule)
},
{
path: 'home',
loadChildren: () => import('./home/home.module').then( m => m.HomePageModule)
}
,
{
path: 'member',
loadChildren: () => import('./home/home.module').then( m => m.HomePageModule)
}
];
@NgModule({