import React, { CSSProperties } from 'react' import Select from './Select' type Version = { value: string, label: string } export default ( { versions, selected, onChange, updateOptions, containerStyle }: { versions: Version[], selected?: Version, onChange?: (newValue: string) => void, updateOptions?: (newSel: string) => void, } & Pick, 'containerStyle' | 'placeholder' | 'disabled'> ) => { return