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