7 lines
210 B
HTML
7 lines
210 B
HTML
<ngb-toast
|
|
*ngFor="let toast of toasts"
|
|
[header]="toast.title" [autohide]="true" [delay]="toast.delay"
|
|
[class]="toast.classname"
|
|
(hide)="toastService.closeToast(toast)">
|
|
{{toast.content}}
|
|
</ngb-toast> |