Created
February 17, 2022 06:42
-
-
Save NaqiNick/983f722e25887900f5e575610513e057 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1 mat-dialog-title> | |
Confirmation | |
</h1> | |
<div mat-dialog-content> | |
<p>are you sure you want to remove this row?</p> | |
</div> | |
<div mat-dialog-actions> | |
<button mat-button (click)="onDismiss()">No</button> | |
<button mat-raised-button color="primary" (click)="onConfirm()">Yes</button> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment