- 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,24 @@
import { Component, OnInit } from '@angular/core';
import { ModalController } from '@ionic/angular';
@Component({
selector: 'app-edit-event',
templateUrl: './edit-event.page.html',
styleUrls: ['./edit-event.page.scss'],
})
export class EditEventPage implements OnInit {
constructor(
private modalController: ModalController,
) { }
ngOnInit() {
}
close(){
this.modalController.dismiss(null);
}
save(){
}
}