web notification config

This commit is contained in:
Eudes Inácio
2021-09-24 08:56:43 +01:00
parent 42ef6f0dc4
commit 08201efe4d
39 changed files with 3706 additions and 2 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 {}