issue #33
Some checks failed
Test CI / build (push) Failing after 12s

- 로그인 화면 기능 로직 1차 구현 중
This commit is contained in:
2025-11-30 01:42:26 +09:00
parent 6943d3d6ab
commit de8381f094
25 changed files with 521 additions and 117 deletions

5
src/util/Validator.ts Normal file
View File

@@ -0,0 +1,5 @@
export class Validator {
static isEmail = (value: string): boolean => {
return /^[^\s@]+@[^\s@]+\.[*\s@]+$/.test(value);
}
}