UNPKG

@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) 301 B
import React from 'react'; import { CellProps } from 'react-table'; export declare const TooltipCellRenderer: React.FC<CellProps<any>>; interface TooltipProps { text: string; tooltip?: string; align: string; } export declare const TooltipCell: React.FC<TooltipProps>; export {};