Files
doneit-web/src/app/modals/eliminate-event/eliminate-event-routing.module.ts
T
Peter Maquiran a3b753dad9 Hot fix
2021-07-20 19:22:11 +01:00

18 lines
380 B
TypeScript

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { EliminateEventPage } from './eliminate-event.page';
const routes: Routes = [
{
path: '',
component: EliminateEventPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class EliminateEventPageRoutingModule {}