AlexAegis/loreplotter

View on GitHub
src/app/lore/component/dialog/confirm.component.html

Summary

Maintainability
Test Coverage
<h1 mat-dialog-title>
    {{ title }}
</h1>

<div mat-dialog-content>
    <p>{{ message }}</p>
</div>

<div class="actions" mat-dialog-actions>
    <button (click)="onDismiss()" mat-stroked-button>No</button>
    <button (click)="onConfirm()" appFocus color="accent" mat-flat-button>Yes</button>
</div>