import React from "react"; import { RadioType } from "./Question"; type Props = { element: RadioType; }; export const Q_Radio = ({ element }: Props) => (

{element.content.choices.map((e: string) => (
))} {/* */}
);