implemented pagination, header polish, and new display fixes

This commit is contained in:
2025-12-15 20:28:14 -05:00
parent fd94a5f261
commit 1eef9145a4
16 changed files with 370 additions and 18 deletions

View File

@@ -0,0 +1,11 @@
export interface PagedData<T> {
data: T[]
pagination: pagination
}
export interface pagination {
page: number
pageSize: number
total: number
totalPages: number
}

View File

@@ -12,4 +12,4 @@ export function toDateTime(date: Date): string {
const second = date.getSeconds().toString().padStart(2, "0");
return `${year}-${month}-${day} ${hour}:${minute}:${second}`;
}
}