import { LightningElement, track } from 'lwc';
export default class ModelWithCross extends LightningElement {
@track showPopup = false;
openLightningModel() {
this.showPopup = true;
}
closeLightningModel() {
this.showPopup = false;
}
saveAndClose() {
this.showPopup = false;
}
}