Validation first Part

This commit is contained in:
2024-07-30 23:23:25 +02:00
parent 55e800009e
commit 2955c034a0
11 changed files with 206 additions and 354 deletions

View File

@@ -277,3 +277,7 @@ export function emailToDirName(email: string): string {
return normalizedEmail;
}
export const LISTINGS_PER_PAGE = 12;
export interface ValidationMessage {
field: string;
message: string;
}