New changes added + AddEvent method partially done

This commit is contained in:
Tiago Kayaya
2020-08-20 14:28:50 +01:00
parent ffa9ecd1fe
commit 65c4cabcbf
24 changed files with 418 additions and 170 deletions
@@ -0,0 +1,20 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { ExpedienteModalPageRoutingModule } from './expediente-modal-routing.module';
import { ExpedienteModalPage } from './expediente-modal.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
ExpedienteModalPageRoutingModule
],
declarations: [ExpedienteModalPage]
})
export class ExpedienteModalPageModule {}