moved to single project
This commit is contained in:
11
ui/hv2-ui/src/app/messages/messages.component.html
Normal file
11
ui/hv2-ui/src/app/messages/messages.component.html
Normal file
@ -0,0 +1,11 @@
|
||||
<section class="mat-typography">
|
||||
<mat-card class="defaultCard" *ngIf="messageService.messages.length">
|
||||
<mat-card-header>
|
||||
<mat-card-title>Messages</mat-card-title>
|
||||
</mat-card-header>
|
||||
<mat-card-content>
|
||||
<button (click)="messageService.clear()">clear</button>
|
||||
<div *ngFor='let message of messageService.messages'> {{message}} </div>
|
||||
</mat-card-content>
|
||||
</mat-card>
|
||||
</section>
|
Reference in New Issue
Block a user