style expedient list

This commit is contained in:
tiago.kayaya
2021-03-18 23:37:03 +01:00
parent 2c766015e7
commit 46e954794f
13 changed files with 426 additions and 8 deletions
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { ExpedientsPage } from './expedients.page';
const routes: Routes = [
{
path: '',
component: ExpedientsPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class ExpedientsPageRoutingModule {}