Full Express backend implementation

This commit is contained in:
Luke Hagar
2023-11-17 22:05:45 -06:00
parent 7289fde676
commit c34352339f
276 changed files with 289824 additions and 9975 deletions

View File

@@ -0,0 +1,4 @@
export function formatDate(date: string | null | undefined) {
if (!date) return 'N/A';
return new Date(date).toLocaleString();
}