You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
441 B
20 lines
441 B
5 months ago
|
import { Component, Inject } from '@angular/core';
|
||
|
import { MAT_DIALOG_DATA } from '@angular/material/dialog';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-dialog-confirm',
|
||
|
templateUrl: './dialog-confirm.component.html',
|
||
|
styleUrls: ['./dialog-confirm.component.scss']
|
||
|
})
|
||
|
export class DialogConfirmComponent {
|
||
|
|
||
|
constructor(
|
||
|
@Inject(MAT_DIALOG_DATA)
|
||
|
private _data: string
|
||
|
) { }
|
||
|
|
||
|
public get content(): string {
|
||
|
return this._data;
|
||
|
}
|
||
|
}
|