route handler + client register ui
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user