import {Component, Inject} from '@angular/core'; import {MAT_DIALOG_DATA, MatDialogRef} from "@angular/material/dialog"; @Component({ selector: 'app-popup-confirmation', templateUrl: './popup-confirmation.component.html', styleUrls: ['./popup-confirmation.component.scss'] }) export class PopupConfirmationComponent { constructor( public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data) {} }