break expense component into smaller pieces

This commit is contained in:
Joe Arndt 2026-02-19 14:19:25 -06:00
parent e127b8ec45
commit 1bcacb82cb
17 changed files with 132 additions and 362 deletions

View file

@ -9,8 +9,6 @@ export class CategoryService {
public readonly categories = this.internalCategories.asReadonly();
public readonly categoryPath = 'http://localhost:3000/common-cents/categories';
// public categories = signal<Category[]>([]);
public constructor(private readonly http: HttpService) {
void this.fetchCategories();
}