|
123456789101112 |
- <section class="common_card">
- <div class="card_header">
- <h4>Support Ticket</h4>
- <button class="rect-button">+</button>
- </div>
- <div class="card_upfold">
- <li *ngFor='let supportTicket of supportTickets' class="cardList">
- <h5> {{supportTicket.heading}}</h5>
- <p>{{supportTicket.description}}</p>
- </li>
- </div>
- </section>
|