first commit

This commit is contained in:
DESKTOP-DH6BVPV\chiefsoft
2022-11-19 19:36:45 -05:00
commit a46382e148
43 changed files with 29540 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { HomePage } from './home.page';
const routes: Routes = [
{
path: '',
component: HomePage,
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class HomePageRoutingModule {}