@atlaskit/table-tree
Version:
A table tree is an expandable table for showing nested hierarchies of information.
19 lines (18 loc) • 528 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type ReactElement } from 'react';
interface HeadersProps {
children: ReactElement | ReactElement[];
}
/**
* __Headers__
*
* Headers component for advanced composition of data, allowing custom data structures.
*
* - [Examples](https://atlassian.design/components/table-tree/examples#advanced)
* - [Code](https://atlassian.design/components/table-tree/code#headers-props)
*/
declare const Headers: ({ children }: HeadersProps) => JSX.Element;
export default Headers;