mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
25 lines
497 B
TypeScript
25 lines
497 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { ModalController } from '@ionic/angular';
|
|
|
|
@Component({
|
|
selector: 'app-eliminate-event',
|
|
templateUrl: './eliminate-event.page.html',
|
|
styleUrls: ['./eliminate-event.page.scss'],
|
|
})
|
|
export class EliminateEventPage implements OnInit {
|
|
|
|
constructor(private modalController: ModalController) { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
close() {
|
|
this.modalController.dismiss('No');
|
|
}
|
|
|
|
save() {
|
|
this.modalController.dismiss('Yes');
|
|
}
|
|
|
|
}
|