@atlaskit/table-tree
Version:
A table tree is an expandable table for showing nested hierarchies of information.
18 lines (17 loc) • 544 B
JavaScript
import React from 'react';
import Items from './internal/items';
function Rows(_ref) {
var items = _ref.items,
render = _ref.render,
_ref$loadingLabel = _ref.loadingLabel,
loadingLabel = _ref$loadingLabel === void 0 ? 'Loading' : _ref$loadingLabel;
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;