UNPKG

linkmore-design

Version:

🌈 🚀lm组件库。🚀

24 lines 906 B
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2"; // 包裹表格外围区域: 工具栏操作区域/主体区域/工具栏底部区域 import React from 'react'; import LmCardTableContainer from "./TableContainer"; import LmCardPager from "../pager"; import LmCardToolBarBottom from "../toolbar/ToolBarBottom"; var LmCardTableWrapper = /*#__PURE__*/React.memo(function (_ref) { var table = _ref.table; var height = table.height, style = table.style; return /*#__PURE__*/React.createElement("div", { className: "lm_card_table_wrapper", style: _objectSpread({ height: height }, style) }, /*#__PURE__*/React.createElement(LmCardTableContainer, { table: table }), /*#__PURE__*/React.createElement(LmCardPager, { table: table }), /*#__PURE__*/React.createElement(LmCardToolBarBottom, { table: table })); }); export default LmCardTableWrapper;