You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aConnect-UX/src/app/shared/components/notifications/notifications.component.html

4 lines
213 B
HTML

<div *ngIf="notifications$ | async as notification" class="notification" [ngClass]="notification.type">
{{ notification.message }}
<button class="close-btn" (click)="clearNotification()">×</button>
</div>