import React, { SFC } from 'react'; import Select from 'react-select'; import DescriptionOption from './DescriptionOption'; import ResetStyles from './ResetStyles'; interface Props { options: any[]; className?: string; placeholder?: string; width: number; onSelected: (item: any) => {} | void; getOptionValue: (item: any) => string; getOptionLabel: (item: any) => string; } const SimplePicker: SFC = ({ className, getOptionLabel, getOptionValue, onSelected, options, placeholder, width, }) => { return (