Vendor app Client: Maiora
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

support-tickets.component.html 387 B

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