@boxyhq/react-ui
Version:
React UI components from BoxyHQ
13 lines (12 loc) • 456 B
TypeScript
type PaginatedTableProps = {
cols: TableProps["cols"];
data: TableProps["data"];
actions: TableProps["actions"];
tableProps?: Pick<TableProps, "tableCaption" | "classNames">;
showErrorComponent: boolean;
errorMessage: string;
emptyStateMessage: string;
};
import { TableProps } from "../types";
declare function PaginatedTable(props: PaginatedTableProps): import("react/jsx-runtime").JSX.Element;
export default PaginatedTable;