1-Edited New Event page. 2-Changed Gabinete-Digital workkflow. 3-Changed App Name. Added Expediente View

This commit is contained in:
Tiago Kayaya
2020-08-19 23:47:11 +01:00
parent d8a6f73878
commit ffa9ecd1fe
19 changed files with 389 additions and 201 deletions
@@ -0,0 +1,21 @@
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { ExpedientePageRoutingModule } from './expediente-routing.module';
import { ExpedientePage } from './expediente.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
ExpedientePageRoutingModule
],
declarations: [ExpedientePage],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class ExpedientePageModule {}