mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 12:37:53 +00:00
25 lines
444 B
TypeScript
25 lines
444 B
TypeScript
|
|
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(){
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|