UNPKG

@atlaskit/dynamic-table

Version:

A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.

12 lines (11 loc) 274 B
/** * @jsxRuntime classic * @jsx jsx */ import { type FC, type ReactNode } from 'react'; type EmptyViewWithFixedHeightProps = { testId?: string; children?: ReactNode; }; export declare const EmptyViewWithFixedHeight: FC<EmptyViewWithFixedHeightProps>; export {};