Created
March 6, 2022 15:52
-
-
Save svierk/0c9413bf8c1699dc5528d9bbb6157b9e to your computer and use it in GitHub Desktop.
Excerpt from Angular Toaster Template
This file contains hidden or 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
<div class="toaster position-fixed top-0 end-0 px-3 py-2 m-16"> | |
<div *ngFor="let toast of currentToasts; index as i"> | |
<app-toast | |
[type]="toast.type" | |
[title]="toast.title" | |
[message]="toast.message" | |
(disposeEvent)="dispose(i)" | |
></app-toast> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment