const getLabel=(options,value)=>{ let option=options.find(o=>o.value==value); return option?option.label:''; } export { getLabel};