Functionnal UI with All Files
This commit is contained in:
15
src/app/view/components/big-card/big-card.component.ts
Normal file
15
src/app/view/components/big-card/big-card.component.ts
Normal file
@ -0,0 +1,15 @@
|
||||
// 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);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user