This commit is contained in:
tiago.kayaya
2022-03-31 14:09:13 +01:00
parent 274f8f0d62
commit edcd2025d1
8 changed files with 130 additions and 41 deletions
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { EvandrePage } from './evandre.page';
const routes: Routes = [
{
path: '',
component: EvandrePage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class EvandrePageRoutingModule {}