This commit is contained in:
tiago.kayaya
2021-03-05 16:43:17 +01:00
parent d63c4fc8fa
commit 304151f2fd
13 changed files with 206 additions and 81 deletions
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { TestPage } from './test.page';
const routes: Routes = [
{
path: '',
component: TestPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class TestPageRoutingModule {}