feat(transaction-history): add transaction history feature with modal

This commit is contained in:
csimonis 2025-04-23 11:02:49 +02:00
commit 9817fb95db
6 changed files with 57 additions and 12 deletions

View file

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