import { connect } from 'react-redux'; import { Select } from 'UI'; const SiteDropdown = ({ contextName="", sites, onChange, value }) => { const options = sites.map(site => ({ value: site.id, text: site.host })).toJS(); return (