()
| 162 | } |
| 163 | |
| 164 | const getCurrentTimeFormatted = () => { |
| 165 | const currentTime = new Date(); |
| 166 | const hours = currentTime.getHours(); |
| 167 | const minutes = currentTime.getMinutes(); |
| 168 | const seconds = currentTime.getSeconds(); |
| 169 | const milliseconds = currentTime.getMilliseconds(); |
| 170 | return `${hours}:${minutes}:${seconds}.${milliseconds}`; |
| 171 | }; |
| 172 | |
| 173 | export function JsonSearchProvider({ |
| 174 | children, |