import React, { Component } from "react"; import { Form } from "antd"; import { WeaSelect } from "ecCom"; import { optionAddWhole } from "../../../../util/options"; class InlineForm extends Component { render() { const { taxAgentOption = [], form, onChange } = this.props; return (
); } } export default Form.create()(InlineForm);