separation des fronts
This commit is contained in:
parent
00d991f8b1
commit
d62915bfe5
276 changed files with 13955 additions and 12 deletions
|
|
@ -0,0 +1,13 @@
|
|||
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<PopupConfirmationComponent>,
|
||||
@Inject(MAT_DIALOG_DATA) public data) {}
|
||||
}
|
||||
Reference in a new issue