// src/app/components/big-card/big-card.component.ts import { Component, input } from '@angular/core'; @Component({ selector: 'app-big-card', standalone: true, imports: [], templateUrl: './big-card.component.html', styleUrl: './big-card.component.scss' }) export class BigCardComponent { showHeader = input(true); }