Files
frontend/src/app/shopping-cart/shopping-cart.component.ts
Piet Ostendorp f489073118 Add order and performance info components to ticket overlay
Introduces OrderComponent, PerformanceInfoComponent, and ShoppingCartComponent for the ticket purchase flow. Updates theater-overlay to display seat selection alongside order details and performance info. Refactors seat and performance data loading, improves UI structure, and enhances movie info display components for consistency.
2025-11-12 10:33:34 +01:00

12 lines
247 B
TypeScript

import { Component } from '@angular/core';
@Component({
selector: 'app-shopping-cart',
standalone: false,
templateUrl: './shopping-cart.component.html',
styleUrl: './shopping-cart.component.css'
})
export class ShoppingCartComponent {
}