ปรับ table ลงเวลา

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-10-20 16:57:32 +07:00
parent 9e3fb8bff7
commit 7d23bdc945
11 changed files with 309 additions and 267 deletions

View file

@ -0,0 +1,9 @@
interface DataRows {
leaveType: string
name: string
Date: string
status: string
}
export type {
DataRows
}

View file

@ -0,0 +1,15 @@
interface TableRows {
fullName: string
timeIn: string
coordinatesIn: string
latIn: string
longIn: string
timeOut: string
coordinatesOut: string
latOut: string
longOut: string
status: string
}
export type {
TableRows
}