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