mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
10 lines
272 B
JavaScript
10 lines
272 B
JavaScript
import { useState } from 'react';
|
|
|
|
const DEFAULT_PAGE_INFO = { page: 1, pageSize: 10, total: 0 };
|
|
|
|
export function usePaging(initialPageInfo) {
|
|
const [pageInfo, setPageInfo] = useState(initialPageInfo ?? { ...DEFAULT_PAGE_INFO });
|
|
|
|
return { pageInfo, setPageInfo };
|
|
}
|