This commit is contained in:
tiago.kayaya
2021-02-10 11:31:34 +01:00
parent 1409250bab
commit c445a61f59
8 changed files with 108 additions and 15 deletions
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { ApproveEventPage } from './approve-event.page';
const routes: Routes = [
{
path: '',
component: ApproveEventPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class ApproveEventPageRoutingModule {}