import React from "react"; import { baseImageUrl } from "../apis"; type Props = { question: any; }; export const RFileForm = ({ question }: Props) => { return (
{question.answers.map((answer: any) => ( <> file
{answer.name}
))}
); };