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