import * as React from 'react' import { ButtonProps } from 'antd/lib/button' import { ArrayButton } from '../array-button' export function RemoveRowButton({ name, index, ...restProps }: { name: string; index: number } & Omit) { return ( array.remove(index)} /> ) } export default RemoveRowButton