working on delegar

This commit is contained in:
tiago.kayaya
2021-04-30 12:57:54 +01:00
parent ba29fc2f65
commit 709835e58b
10 changed files with 587 additions and 3 deletions
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { DelegarPage } from './delegar.page';
const routes: Routes = [
{
path: '',
component: DelegarPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class DelegarPageRoutingModule {}