import { Component, Input } from '@angular/core'; @Component({ selector: 'app-movie-category', standalone: false, templateUrl: './movie-category.component.html', styleUrl: './movie-category.component.css' }) export class MovieCategoryComponent { @Input() category: string = '-'; getCategoryText(): string { return this.category; } }