export default function SelectField({ properties, options }) { let select_field; if(properties.error_message) { select_field = (

{properties.error_message }

); } else { select_field = (
); } return select_field; }