Complete version of the registration form.

This commit is contained in:
codevictory
2021-12-16 22:38:30 +02:00
parent 79968fcaab
commit 77e91161d6
6 changed files with 308 additions and 100 deletions

View File

@@ -1,7 +1,3 @@
export const capFirstLetter = (str: string) => {
return str.charAt(0).toUpperCase() + str.slice(1);
}
export const arrayToString = (str: string) => {
return str.toString().replaceAll(",", ", ");
}