Create expenses tracker application with Next.js

This commit is contained in:
2025-06-13 08:42:05 +00:00
parent 71ca35db40
commit ae91f9807b
6 changed files with 246 additions and 98 deletions

7
src/types/index.ts Normal file
View File

@ -0,0 +1,7 @@
export interface Transaction {
id: string;
description: string;
amount: number;
type: 'expense' | 'income';
date: string;
}