import React, { SFC } from 'react'; interface Props { onValueChange: any; options: any; value: string; label: string; } const SimpleDropdown: SFC = props => { return (
{props.label}
); }; export default SimpleDropdown;