import React from 'react'; import CustomParamButton, { CustomParamButtonType } from './CustomParamButton'; interface Props { index: string; onRemove: (index: string) => void; } const CustomParamAction: React.FC = ({ index, onRemove }) => ( <> onRemove(index)} /> ); export default CustomParamAction;