{ MatDialogRef, MAT_DIALOG_DATA } from "@angular/material";
@Component({
templateUrl: "./dialog-confirmation.component.html",
styleUrls: ["./dialog-confirmation.component.scss"]
})
export class DialogConfirmationComponent {
/**
* Конструктор компонента
*/
constructor(
public dialogRef: MatDialogRef<DialogConfirmationComponent>,
@Inject(MAT_DIALOG_DATA) public data: any
) {}
}
У меня сейчас тоже самое
Обсуждают сегодня