Tampilan UI Admin PPID IKM & API

This commit is contained in:
2025-06-12 17:40:37 +08:00
parent a1c2821153
commit 1462e1d256
52 changed files with 2719 additions and 797 deletions

View File

@@ -29,7 +29,7 @@ const getCurrentTime = () => {
}
const isWorkingHours = (currentTime: string): boolean => {
const [openTime, closeTime] = ['08:00', '11:00'];
const [openTime, closeTime] = ['08:00', '16:00'];
const compareTimes = (time1: string, time2: string) => {
const [hour1, minute1] = time1.split(':').map(Number);