26 lines
660 B
TypeScript
26 lines
660 B
TypeScript
/*
|
|
Authors : initappz (Rahul Jograna)
|
|
Website : https://initappz.com/
|
|
App Name : E-Learning App Template
|
|
This App Template Source code is licensed as per the
|
|
terms found in the Website https://initappz.com/license
|
|
Copyright and Good Faith Purchasers © 2021-present initappz.
|
|
*/
|
|
import { NgModule } from '@angular/core';
|
|
import { Routes, RouterModule } from '@angular/router';
|
|
|
|
import { EditProfilePage } from './edit-profile.page';
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: EditProfilePage
|
|
}
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule],
|
|
})
|
|
export class EditProfilePageRoutingModule { }
|