modal-alert.component.ts
432 Bytes
import { Component, OnInit, Input } from '@angular/core';
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
@Component({
templateUrl: './modal-alert.component.html',
styleUrls: ['./modal-alert.component.scss']
})
export class ModalAlertComponent implements OnInit {
textoModal: string;
constructor(private activeModal: NgbActiveModal) { }
ngOnInit() {
}
aceptar() {
this.activeModal.close();
}
}