import React, { ChangeEvent, FC } from 'react'; interface Props { onValueChange: (e: ChangeEvent) => void; options: Array<{ value: string; name: string }>; value: string; label: string; } export const SimpleSelect: FC = props => { const { label, onValueChange, value, options } = props; return (
{label}
); };