import Form from '..'; import Grid from '../../grid'; import Input from '../../input'; import React from 'react'; import ReactDOM from 'react-dom'; const FormItem = Form.Item; const { Row, Col } = Grid; const formItemLayout = { labelCol: { span: 4 }, wrapperCol: { span: 14 }, }; const insetLayout = { labelCol: { fixedSpan: 3 }, }; ReactDOM.render(
, document.getElementById('form-demo-5'), );