您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

use-pagination.ts 329B

12345678910
  1. import { useQuery } from '@tanstack/react-query';
  2. import { getData } from '../requests/dataRequest';
  3. export const usePagination = (activePage: string) => {
  4. return useQuery(['randomData', activePage], () => getData(activePage), {
  5. keepPreviousData: true,
  6. refetchOnMount: false,
  7. refetchOnWindowFocus: false,
  8. });
  9. };