improvements in pending task

This commit is contained in:
tiago.kayaya
2021-04-30 10:06:54 +01:00
parent b7337ab9dd
commit 84dad542aa
15 changed files with 562 additions and 13 deletions
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { PendentesPage } from './pendentes.page';
const routes: Routes = [
{
path: '',
component: PendentesPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class PendentesPageRoutingModule {}