This commit is contained in:
tiago.kayaya
2021-06-17 12:24:31 +01:00
parent ba8abd077e
commit e0e6c35678
15 changed files with 693 additions and 161 deletions
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { ForwardPage } from './forward.page';
const routes: Routes = [
{
path: '',
component: ForwardPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class ForwardPageRoutingModule {}