Add new modal to edit task to approve

This commit is contained in:
Peter Maquiran
2021-05-04 13:55:28 +01:00
parent 1ccb311a0a
commit ab1954255e
8 changed files with 794 additions and 0 deletions
@@ -0,0 +1,18 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { Routes, RouterModule } from '@angular/router';
import { EditEventToApproveComponent } from './edit-event.page';
const routes: Routes = [
{
path: '',
component: EditEventToApproveComponent
}
];
@NgModule({
imports: [RouterModule.forChild(routes), BrowserModule],
exports: [RouterModule],
})
export class EditEventToApproveComponentRoutingModule {}