import { Eintrittskarte } from '@infinimotion/model-frontend'; import { Component, input } from '@angular/core'; @Component({ selector: 'app-ticket-small', standalone: false, templateUrl: './ticket-small.component.html', styleUrl: './ticket-small.component.css', }) export class TicketSmallComponent { ticket = input.required(); convertIntoRowName(n: number): string { return String.fromCharCode(64 + n); } }