import { Label } from "@/components/ui/label"; import { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, } from "@/components/ui/select"; import { ReactElement } from "react"; interface MultipleOptionSelectorProps { header: ReactElement; fieldName: string; choices: string[]; handleFunction: Function | null; description: ReactElement; placeholder: string; selectLabel: string; } export function MultipleOptionSelector(props: MultipleOptionSelectorProps) { return (