UNPKG

@atlaskit/table-tree

Version:

A table tree is an expandable table for showing nested hierarchies of information.

7 lines (6 loc) • 277 B
import React from 'react'; export interface CellWithColumnWidthProps { width?: string | number; columnIndex?: number; } export default function withColumnWidth<T extends object>(Cell: React.ComponentType<T>): (props: T & CellWithColumnWidthProps) => React.JSX.Element;