UNPKG

@atlaskit/dynamic-table

Version:

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

13 lines (12 loc) 281 B
/** * @jsxRuntime classic * @jsx jsx */ import { type FC, type ReactNode } from 'react'; interface LoadingContainerProps { contentsOpacity: number; children: ReactNode; testId?: string; } export declare const ContentsContainer: FC<LoadingContainerProps>; export {};