import type { PaginationParams } from './types';
export const emptyPagination: PaginationParams = {
page: 1,
onNextPageClick: () => {},
onPrevPageClick: () => {},
resetPage: () => {},
hasPages: false,
hasNextPage: false,
canGoBackwards: false,
isLoading: false,
isVisible: false,
};
-
贾浩@五瓣科技 authored0fb327b3