Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3527 | Rev 3652 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |

import { usePagination } from '@shared/hooks';

export function useTimeline() {
  const { items, loading, hasMore, nextPage, refetch } = usePagination('/microlearning/timeline');

  return {
    items,
    loading,
    hasMore,
    loadMore: nextPage,
    refetch
  };
}