import React from "react"; import { DropdownType } from "./CreateSurveyFormPage"; import { useQuestion } from "./question.context"; type Props = { element: DropdownType; }; export const QDropdown = ({ element }: Props) => { const { questionListChange } = useQuestion(); return (
{element.content.choices.map((e: string) => (
))}
); };