feat: vendor create and vendor list

This commit is contained in:
efrilm
2025-09-09 01:17:01 +07:00
parent 789dd823b6
commit 105d75c820
11 changed files with 1404 additions and 5 deletions
+10
View File
@@ -0,0 +1,10 @@
export type VendorType = {
id: number
photo: string
name: string
company: string
email: string
telephone: string
youPayable: number
theyPayable: number
}