add new buttons in account

This commit is contained in:
2025-05-29 11:48:33 +03:00
parent b126a32418
commit 403c7e4153
5 changed files with 275 additions and 195 deletions

View File

@@ -173,6 +173,7 @@ export interface Route {
status: string
owner_email: string
owner_name: string
is_highlighted: boolean
}
export interface SelectOption {
@@ -269,3 +270,12 @@ export interface RouteSearchPageProps {
route: string
}>
}
export interface PaginationProps {
currentPage: number
totalPages: number
hasNext: boolean
hasPrevious: boolean
isLoading: boolean
onPageChange: (page: number) => void
}