import React from 'react'; export const SelectWithInput = (props) => { const { selectName, selectId, selectValue, options, inputName, inputId, inputType, inputValue, selectOnChange, inputOnChange, showInput, inputOnBlur, labelText, disabled, } = props; return (
{showInput && }
) }