@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*
8 lines (7 loc) • 340 B
TypeScript
import { TableInstance } from 'react-table';
import { ReactElement } from 'react';
declare type FilterChipBarProps<T extends Record<string, unknown>> = {
instance: TableInstance<T>;
};
export declare function FilterChipBar<T extends Record<string, unknown>>({ instance, }: FilterChipBarProps<T>): ReactElement | null;
export {};