14 lines
463 B
TypeScript
14 lines
463 B
TypeScript
import {Component, input} from '@angular/core';
|
|
import {Sitzplatz} from '@infinimotion/model-frontend';
|
|
import {TheaterSeatState} from '../model/theater-seat-state.model';
|
|
|
|
@Component({
|
|
selector: 'app-theater-layout',
|
|
standalone: false,
|
|
templateUrl: './theater-layout.component.html',
|
|
styleUrl: './theater-layout.component.css'
|
|
})
|
|
export class TheaterLayoutComponent {
|
|
seatsPerRow = input.required<{ seat: Sitzplatz, state: TheaterSeatState }[][]>();
|
|
}
|