add structure diploma and expediemtes-pr desktop

This commit is contained in:
tiago.kayaya
2021-05-10 15:05:40 +01:00
parent 6c5a5708e6
commit e87504fd17
37 changed files with 1285 additions and 38 deletions
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { DiplomasPage } from './diplomas.page';
const routes: Routes = [
{
path: '',
component: DiplomasPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class DiplomasPageRoutingModule {}