source: bus-n-go-pavel-216049/bus-n-go-frontend/src/app/components/tickets-page/tickets-page.component.html@ baf4cc4

Last change on this file since baf4cc4 was baf4cc4, checked in by ppaunovski <paunovskipavel@…>, 4 weeks ago

split group project and individual project into two separate folders

  • Property mode set to 100644
File size: 314 bytes
RevLine 
[baf4cc4]1<div class="flex justify-center items-center flex-col">
2 <div>Tickets</div>
3 <div>
4 <button mat-flat-button>
5 <a [routerLink]="['buy']">Buy Ticket</a>
6 </button>
7 </div>
8
9 <div>
10 @for (ticket of tickets; track ticket.id) {
11 <app-ticket [ticket]="ticket"></app-ticket>
12 }
13 </div>
14
15</div>
Note: See TracBrowser for help on using the repository browser.