implement change group name

This commit is contained in:
tiago.kayaya
2021-01-27 11:23:57 +01:00
parent e7621c8e3d
commit d12a378836
13 changed files with 480 additions and 33 deletions
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { EditGroupPage } from './edit-group.page';
const routes: Routes = [
{
path: '',
component: EditGroupPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class EditGroupPageRoutingModule {}