@boxyhq/react-ui
Version:
React UI components from BoxyHQ
13 lines (12 loc) • 468 B
TypeScript
type NonPaginatedTableProps = {
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 NonPaginatedTable(props: NonPaginatedTableProps): import("react/jsx-runtime").JSX.Element;
export default NonPaginatedTable;