import React from 'react'; import { Input, Form, Button, Space } from 'antd'; import { PlusOutlined, DeleteOutlined } from '@ant-design/icons'; const InputList: React.FC = () => { return (
{(fields, { add, remove }) => (
{fields.map(({ key, name, ...restField }) => ( remove(name)} /> ))} {fields.length < 5 && ( )}
)}
); }; export default InputList;