Advertisement
Shell_Casing

header and body

Jan 9th, 2019
549
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. <div *ngFor="let notification of notifications" class="{{ notificationClass(notification) }} alert-dismissable">
  3.   <h4>{{ notification.message.header }}</h4>
  4.   <p>{{ notification.message.body }}</p>
  5.   <a class="close" (click)="removeNotification(notification)">&times;</a>
  6. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement