feat: implement product overview and quantity components

This commit is contained in:
2025-04-29 09:20:08 +02:00
parent 17c955067e
commit b9c29a5dea
14 changed files with 188 additions and 96 deletions

View File

@ -0,0 +1,4 @@
<select [ngModel]="selectedProductId()" (ngModelChange)="onProductChange($event)">
<option [ngValue]="null">Select a product</option>
<option *ngFor="let product of products()" [ngValue]="product.id">{{ product.title }} - {{ product.price | currency : 'EUR' : 'symbol' : '1.2-2' }}</option>
</select>