Vendor app Client: Maiora
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

notificaiton.component.html 381 B

123456789101112
  1. <section class="common_card">
  2. <div class="card_header">
  3. <h4>Notification</h4>
  4. <button class="rect-button">+</button>
  5. </div>
  6. <div class="card_upfold">
  7. <li *ngFor='let notification of notifications' class="cardList">
  8. <h5> {{notification.heading}}</h5>
  9. <p>{{notification.description}}</p>
  10. </li>
  11. </div>
  12. </section>