refactor: refactor and clean up of home.component.ts

This commit is contained in:
Lea 2025-02-26 10:17:07 +01:00
parent 9104c6eb2c
commit f09935564d
3 changed files with 14 additions and 34 deletions

View file

@ -0,0 +1,5 @@
export interface Game {
id: string;
name: string;
image: string;
}

View file

@ -0,0 +1,6 @@
export interface Transaction {
id: string;
type: string;
amount: number;
date: string;
}