import React from "react"; import { FileType } from "../types"; type Props = { element: FileType; }; export const AFileForm = ({ element }: Props) => { return (
{/* {element.content.choices.map((choice) => (
))} */}
); };