import React, { useEffect } from "react"; import { CheckboxType } from "../types"; type Props = { element: CheckboxType; }; export const ACheckboxForm = ({ element }: Props) => { return (
{element.content.choices.map((choice) => (
))}
); };