New action page and new publication page finished.

This commit is contained in:
Tiago Kayaya
2020-12-01 17:22:45 +01:00
parent 8e31026caa
commit 2c7b72a84a
12 changed files with 356 additions and 12 deletions
@@ -1,4 +1,5 @@
import { Component, OnInit } from '@angular/core';
import { ModalController } from '@ionic/angular';
@Component({
selector: 'app-new-action',
@@ -7,9 +8,17 @@ import { Component, OnInit } from '@angular/core';
})
export class NewActionPage implements OnInit {
constructor() { }
constructor(
private modalController: ModalController,
) { }
ngOnInit() {
}
save(){
console.log('Salvar...');
}
close(){
this.modalController.dismiss();
}
}