implement pagination

This commit is contained in:
2025-05-28 12:30:08 +03:00
parent 9eaaff9eb2
commit a673210f9f
7 changed files with 215 additions and 30 deletions

View File

@@ -235,6 +235,8 @@ export interface PricingCardProps {
export interface SearchResponse {
count: number
results: SearchCardProps[]
next: string | null
previous: string | null
}
export interface SearchPageProps {