@alilc/lowcode-plugin-components-pane
Version:
20 lines • 681 B
JavaScript
import _inheritsLoose from "@babel/runtime/helpers/inheritsLoose";
import React from 'react';
import cls from 'classnames/bind';
import style from './index.module.scss';
var cx = cls.bind(style);
var List = /*#__PURE__*/function (_React$Component) {
_inheritsLoose(List, _React$Component);
function List() {
return _React$Component.apply(this, arguments) || this;
}
var _proto = List.prototype;
_proto.render = function render() {
var className = this.props.className;
return /*#__PURE__*/React.createElement("div", {
className: cls(className, cx('cards'))
}, this.props.children);
};
return List;
}(React.Component);
export { List as default };