route handler + client register ui

This commit is contained in:
2025-05-17 12:07:19 +03:00
parent a867699855
commit 48d286cf55
12 changed files with 655 additions and 29 deletions

View File

@@ -10,6 +10,10 @@ export interface TextInputProps {
className?: string
maxLength?: number
tooltip?: string | React.ReactNode
style: string
isPassword?: boolean
isVisible?: boolean
togglePasswordVisibility?: () => void
}
export interface ButtonProps {
@@ -109,3 +113,11 @@ export interface UserState {
isAuthenticated: boolean
user: User | null
}
export interface PhoneInputProps {
value: string
handleChange: (e: React.ChangeEvent<HTMLInputElement>) => void
label?: string
className?: string
operatorsInfo?: boolean
}