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

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