知与行后台管理端

index.jsx 284B

123456789
  1. import React from 'react';
  2. import { Form } from 'antd';
  3. import WrapperForm from './WrapperForm';
  4. import { FieldTypes } from './WrapperItem';
  5. const createForm = option => Form.create(option)(WrapperForm);
  6. export default Form.create()(WrapperForm);
  7. export { FieldTypes, createForm };