123456789101112131415161718192021 |
- import { NgModule } from '@angular/core';
- import { RouterModule, Routes } from '@angular/router';
- const routes: Routes = [
- {path: 'friends', loadChildren: () => import('./friends/friends.module').then(mod => mod.FriendsPageModule)},
- {
- path: 'add-frends',
- loadChildren: () => import('./add-frends/add-frends.module').then( m => m.AddFrendsPageModule)
- },
-
-
-
-
-
- ];
- @NgModule({
- imports: [RouterModule.forChild(routes)],
- exports: [RouterModule]
- })
- export class ContactsRoutingModule { }
|