import React from 'react'; import SelectSearch from 'react-select-search'; export const CustomSelect = ({ options, value, multiple, disabled, onChange }) => { function renderValue(valueProps) { if(valueProps) { return valueProps.value.split(', ').map((value) => {value}); } } return (