This commit is contained in:
Peter Maquiran
2022-12-17 17:52:35 +01:00
parent 067c54bf00
commit 1c8abb2de7
11 changed files with 101 additions and 20 deletions
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { AddUserPage } from './add-user.page';
const routes: Routes = [
{
path: '',
component: AddUserPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class AddUserPageRoutingModule {}