import React from "react"; import { DropdownType } from "../types"; type Props = { element: DropdownType; }; export const QDropdown = ({ element }: Props) => { return (
{element.content.choices.map((e: any) => (
))}
); };