- add new-event page

- add view-event page
- add edit-event page
This commit is contained in:
tiago.kayaya
2021-01-29 09:45:27 +01:00
parent 90d5b27430
commit 076b614488
33 changed files with 1362 additions and 134 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 { EditEventPageRoutingModule } from './edit-event-routing.module';
import { EditEventPage } from './edit-event.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
EditEventPageRoutingModule
],
declarations: [EditEventPage]
})
export class EditEventPageModule {}