refactored services and expense list

This commit is contained in:
Joe Arndt 2026-02-13 15:00:51 -06:00
parent fded7f7c09
commit 6e6cced0c6
15 changed files with 125 additions and 91 deletions

View 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>('');
}