@maherunlocker/custom-react-table
Version:
dynamic table based on react table v7
11 lines (10 loc) • 415 B
TypeScript
import React from 'react';
import { TableInstance } from 'react-table';
declare type FilterPageProps<T extends Record<string, unknown>> = {
instance: TableInstance<T>;
anchorEl?: Element;
onClose: () => void;
show: boolean;
};
export declare function FilterPage<T extends Record<string, unknown>>({ instance, anchorEl, onClose, show, }: FilterPageProps<T>): React.ReactElement;
export {};