@maherunlocker/custom-react-table
Version:
**Custom-react-table** is based on <code>React-Table v7</code>: collection of hooks for **building powerful tables and datagrid experiences**. These hooks are lightweight, composable, and ultra-extensible, but **do not render any markup or styles for you*
11 lines (10 loc) • 439 B
TypeScript
import { ReactElement } from 'react';
import { TableInstance } from 'react-table';
declare type ColumnHidePageProps<T extends Record<string, unknown>> = {
instance: TableInstance<T>;
anchorEl?: Element;
onClose: () => void;
show: boolean;
};
export declare function ColumnHidePage<T extends Record<string, unknown>>({ instance, anchorEl, onClose, show, }: ColumnHidePageProps<T>): ReactElement | null;
export {};