UNPKG

@wufengteam/inputs

Version:

平台提供的右侧属性编辑器,需要在主工程中注册

23 lines 606 B
import React from 'react'; import { Form, Checkbox as AntdCheckbox } from 'antd'; var Group = AntdCheckbox.Group; var Checkbox = function Checkbox(_ref) { var name = _ref.name, label = _ref.label, rules = _ref.rules, options = _ref.options, defaultValue = _ref.defaultValue; return /*#__PURE__*/React.createElement(Form.Item, { name: name, label: label, rules: rules }, /*#__PURE__*/React.createElement(Group, { defaultValue: defaultValue, options: options, style: { display: 'flex', flexDirection: 'column' } })); }; export default Checkbox;