This commit is contained in:
Olu Amey
2020-03-15 07:34:08 -04:00
parent 687cc1f102
commit 502302d8bd
82 changed files with 180 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { StartPage } from './start.page';
const routes: Routes = [
{
path: '',
component: StartPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class StartPageRoutingModule {}