import React from "react"; import { RadioType } from "../types"; type Props = { element: RadioType; }; export const RadioForm = ({ element }: Props) => { return (
{element.content.choices.map((e: any, index: number) => (
))}
); };