Start to be able to select reservation dates
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-06-18 22:59:03 +02:00
parent f0362c9574
commit c8a01f11b2
7 changed files with 164 additions and 3 deletions

View File

@@ -0,0 +1,6 @@
/**
* Get formatted UNIX date
*/
export function fmtUnixDate(time: number): string {
return new Date(time * 1000).toLocaleString("fr-FR");
}