bananas-commerce-admin
Version:
What's this, an admin for apes?
14 lines (13 loc) • 492 B
TypeScript
import React from "react";
import { TableContainerProps as MUITableContainerProps, TableProps as MUITableProps } from "@mui/material";
export interface TableProps extends React.PropsWithChildren {
pagination?: boolean;
defaultPage?: number;
defaultRowsPerPage?: number;
rowsPerPageOptions?: number[];
count: number;
tableProps?: MUITableProps;
tableContainerProps?: MUITableContainerProps;
}
export declare const Table: React.FC<TableProps>;
export default Table;