import React from "react"; import styles from "./index.less"; import { Form, Input, Button } from "antd"; import { MinusCircleOutlined, PlusOutlined } from "@ant-design/icons"; const formItemLayout = { labelCol: { xs: { span: 24 }, sm: { span: 4 } }, wrapperCol: { xs: { span: 24 }, sm: { span: 20 } } }; const formItemLayoutWithOutLabel = { wrapperCol: { xs: { span: 24, offset: 0 }, sm: { span: 20, offset: 4 } } }; const DynamicFieldSet = () => { const onFinish = values => { console.log("Received values of form:", values); }; return (