import React from 'react'; import SelectMenu from './SelectMenu'; interface props { label: string value: string options: { label: string, value: string }[]; onChange; className?: string; } export default function LabeledSelectMenu (props:props) { return (