Files
doneit-web/src/app/shared/chat/new-group/new-group-routing.module.ts
T

22 lines
481 B
TypeScript
Raw Normal View History

2023-06-22 12:53:35 +01:00
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { NewGroupPage } from './new-group.page';
const routes: Routes = [
{
path: '',
component: NewGroupPage
},
{
path: 'contacts',
loadChildren: () => import('./contacts/contacts.module').then( m => m.ContactsPageModule)
2021-03-04 18:50:26 +01:00
}
2023-06-22 12:53:35 +01:00
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class NewGroupPageRoutingModule {}