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