Skip to content

Instantly share code, notes, and snippets.

@svierk
Created March 6, 2022 15:52
Show Gist options
  • Save svierk/0c9413bf8c1699dc5528d9bbb6157b9e to your computer and use it in GitHub Desktop.
Save svierk/0c9413bf8c1699dc5528d9bbb6157b9e to your computer and use it in GitHub Desktop.
Excerpt from Angular Toaster Template
<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