feat: implement product configuration and order management with service refactoring and UI updates

This commit is contained in:
Elyes
2025-11-27 09:49:13 +01:00
parent a740a5b319
commit 0a03f9be60
14 changed files with 281 additions and 56 deletions

View File

@@ -1,8 +1,10 @@
import { Component } from '@angular/core';
import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { FormsModule } from '@angular/forms';
@Component({
selector: 'app-userdatapage',
imports: [],
imports: [FormsModule],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
templateUrl: './userdatapage.html',
styleUrl: './userdatapage.scss',
})