Add registration form v1.

This commit is contained in:
codevictory
2021-11-02 23:33:04 +02:00
parent 00c8d97ca5
commit f115032ae3
5 changed files with 140 additions and 9 deletions

3
src/components/utils.ts Normal file
View File

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