UNPKG

tw-table

Version:

table designed with tailwind and tanstack-table.

8 lines (7 loc) 224 B
import { Table } from '@tanstack/react-table'; import React from 'react'; declare type Props = { table: Table<any>; }; declare const Pagination: ({ table }: Props) => React.JSX.Element; export default Pagination;