UNPKG

@atlaskit/table-tree

Version:

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

18 lines (17 loc) • 413 B
import React from 'react'; import Items from './internal/items'; function Rows({ items, render, loadingLabel = 'Loading' }) { return /*#__PURE__*/React.createElement("div", { role: "rowgroup" }, /*#__PURE__*/React.createElement(Items, { items: items, loadingLabel: loadingLabel, render: render })); } // eslint-disable-next-line @repo/internal/react/require-jsdoc export default Rows;