This commit is contained in:
Olu Amey
2020-09-13 16:47:45 -04:00
parent 0c367f4d7c
commit 364a6a231f
3 changed files with 19 additions and 5 deletions
+8
View File
@@ -22,6 +22,14 @@ const routes: Routes = [
{
path: 'blog',
loadChildren: () => import('./blog/blog.module').then( m => m.BlogPageModule)
},
{
path: 'blogdetail',
loadChildren: () => import('./blogdetail/blogdetail.module').then( m => m.BlogdetailPageModule)
},
{
path: 'login',
loadChildren: () => import('./login/login.module').then( m => m.LoginPageModule)
}
];