import React from 'react'; import { regionLabels as labels } from 'Types/integrations/sumoLogicConfig'; import Select from 'Shared/Select'; const options = Object.keys(labels).map(key => ({ text: labels[ key ], label: key })); const RegionDropdown = props => (