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