@deepdub/react-arborist
Version:
9 lines (8 loc) • 426 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.DefaultRow = void 0;
const jsx_runtime_1 = require("react/jsx-runtime");
function DefaultRow({ node, attrs, innerRef, children, }) {
return ((0, jsx_runtime_1.jsx)("div", Object.assign({}, attrs, { ref: innerRef, onFocus: (e) => e.stopPropagation(), onClick: node.handleClick, children: children })));
}
exports.DefaultRow = DefaultRow;
;