refactored services and expense list
This commit is contained in:
parent
fded7f7c09
commit
6e6cced0c6
15 changed files with 125 additions and 91 deletions
12
src/app/components/card/card.component.ts
Normal file
12
src/app/components/card/card.component.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import { Component, input } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-card',
|
||||
imports: [],
|
||||
templateUrl: './card.component.html',
|
||||
styleUrl: './card.component.scss',
|
||||
})
|
||||
export class CardComponent {
|
||||
public header = input<string>('');
|
||||
public footer = input<string>('');
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue