Expense List Table

This commit is contained in:
efrilm
2025-09-10 14:24:18 +07:00
parent c32d08666e
commit 7077bf8d87
12 changed files with 1372 additions and 6 deletions
+11
View File
@@ -0,0 +1,11 @@
export type ExpenseType = {
id: number
date: string
number: string
reference: string
benefeciaryName: string
benefeciaryCompany: string
status: string
balanceDue: number
total: number
}