mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
076b614488
- add view-event page - add edit-event page
18 lines
360 B
TypeScript
18 lines
360 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { Routes, RouterModule } from '@angular/router';
|
|
|
|
import { ViewEventPage } from './view-event.page';
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: ViewEventPage
|
|
}
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule],
|
|
})
|
|
export class ViewEventPageRoutingModule {}
|