Improve profile

This commit is contained in:
Peter Maquiran
2021-05-27 16:21:04 +01:00
parent b686696bf7
commit ad07ed0540
10 changed files with 92 additions and 3 deletions
+17
View File
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { PinPage } from './pin.page';
const routes: Routes = [
{
path: '',
component: PinPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class PinPageRoutingModule {}