hightable
Version:
A dynamic windowed scrolling table component for react
14 lines (13 loc) • 454 B
TypeScript
import { type ReactNode } from 'react';
import type { HighTableProps } from '../types.js';
type Props = Pick<HighTableProps, 'data'> & {
/** Child components */
children: ReactNode;
};
/**
* Provides the number of rows and columns, and the version of the data frame.
*
* It also providers a data key for testing purposes.
*/
export declare function DataProvider({ children, data }: Props): import("react/jsx-runtime").JSX.Element;
export {};