This commit is contained in:
Olu Amey
2020-09-12 14:50:54 -04:00
parent 6923deb50e
commit 506d2a48d7
2 changed files with 9 additions and 5 deletions
+8 -4
View File
@@ -7,15 +7,19 @@ const routes: Routes = [
path: '',
loadChildren: () => import('./home/home.module').then(m => m.HomePageModule)
},
{
path: 'member',
loadChildren: () => import('./tabs/tabs.module').then(m => m.TabsPageModule)
},
{
path: 'home',
loadChildren: () => import('./home/home.module').then( m => m.HomePageModule)
}
,
},
{
path: 'member',
loadChildren: () => import('./tabs/tabs.module').then( m => m.TabsPageModule)
path: 'about',
loadChildren: () => import('./about/about.module').then( m => m.AboutPageModule)
}
];
@NgModule({
imports: [
+1 -1
View File
@@ -1,5 +1,5 @@
import { Component } from '@angular/core';
import { BlackConnectService } from '../api/black-connect.service';
//import { BlackConnectService } from '../api/black-connect.service';
@Component({