route handlers for account/main
This commit is contained in:
@@ -135,3 +135,21 @@ export interface AccountSidebarProps {
|
||||
user: User
|
||||
navigation: NavigationItem[]
|
||||
}
|
||||
|
||||
export interface TelegramMessage {
|
||||
source: string
|
||||
name: string
|
||||
phone_number: string
|
||||
message: string
|
||||
}
|
||||
|
||||
export type SourceType = 'account' | 'contact-us'
|
||||
|
||||
export interface TextAreaProps {
|
||||
value: string
|
||||
handleChange: (e: React.ChangeEvent<HTMLTextAreaElement>) => void
|
||||
label: string
|
||||
name: string
|
||||
placeholder: string
|
||||
height?: string | number
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user