@thehappycoder/react-responsive-pagination
Version:
React component for responsive pagination
8 lines (7 loc) • 366 B
TypeScript
import React from 'react';
import { PageChangeHandler } from '.';
import { SkinComponent } from '../skins';
export declare function useView(skin: SkinComponent, handlePageChange: PageChangeHandler): React.FunctionComponent<{
ref?: ((instance: HTMLElement | null) => void) | React.RefObject<HTMLElement> | null | undefined;
items: import(".").ViewItem[];
}>;