Add journal frontend

This commit is contained in:
Martin Pander
2022-11-09 21:05:20 +01:00
parent 82f062b831
commit d9b92ab4e9
59 changed files with 3870 additions and 106 deletions

View File

@ -0,0 +1,7 @@
export function getServerDateRep(date: Date) : string {
return date.toISOString().slice(0,10);
}
export function getClientDateRep(date: Date) : string {
return date.toLocaleDateString("de-DE");
}