This commit is contained in:
Peter Maquiran
2021-06-03 15:03:23 +01:00
parent 8e8e1cd152
commit 3e64e6358e
8 changed files with 89 additions and 49 deletions
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { EditEventPage } from './edit-event.page';
const routes: Routes = [
{
path: '',
component: EditEventPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class EditEventPageRoutingModule {}