import { Label } from "@/components/ui/label"; import { Button } from "@/components/ui/button"; import { ReactElement } from "react"; interface SelectorInterface { label: ReactElement; name: string; choice1: string; choice2: string; handleFunction: Function; value: string; description: ReactElement; } export function DualOptionSelector(props: SelectorInterface) { return (
{props.description}
); }