16 lines
340 B
TypeScript
16 lines
340 B
TypeScript
|
|
// 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<boolean>(true);
|
||
|
|
|
||
|
|
}
|