const convertToOption = (data) => { if (data) { return { value: data.id, label: data.name, } } return null; }; export default convertToOption;