From 264f4d5412097694a89716520ec45ca2b92c9681 Mon Sep 17 00:00:00 2001 From: Olu Amey Date: Sat, 12 Sep 2020 14:32:49 -0400 Subject: [PATCH] fix --- src/app/app-routing.module.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 2dfe191..88109bd 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -1,3 +1,4 @@ +//import { TabsPageModule } from './tabs/tabs.module'; import { NgModule } from '@angular/core'; import { PreloadAllModules, RouterModule, Routes } from '@angular/router'; @@ -13,7 +14,7 @@ const routes: Routes = [ , { path: 'member', - loadChildren: () => import('./home/home.module').then( m => m.HomePageModule) + loadChildren: () => import('./tabs/tabs.module').then( m => m.TabsPageModule) } ]; @NgModule({