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.
12 lines
247 B
TypeScript
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 {
|
|
|
|
}
|