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,14 @@
import { Component } from '@angular/core';
import {CardComponent} from '../card/card.component';
@Component({
selector: 'app-add-expense',
imports: [
CardComponent
],
templateUrl: './add-expense.component.html',
styleUrl: './add-expense.component.scss',
})
export class AddExpenseComponent {
}