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