code dump frontend

This commit is contained in:
2024-12-02 18:29:45 -05:00
parent 44f1f35caa
commit 9e8cf4b147
19 changed files with 681 additions and 184 deletions

View File

@ -0,0 +1,14 @@
export const convertUtc = (utcTimestamp: string): string => {
const utcTimeZone: string = Intl.DateTimeFormat().resolvedOptions().timeZone;
return new Date(utcTimestamp).toLocaleString("en-US", {
day: "numeric",
month: "numeric",
year: "numeric",
hour: "numeric",
minute: "numeric",
hourCycle: "h24",
timeZone: utcTimeZone,
});
};
const validateTime = (parsedUtcTimestamp: any) => {};