import React from "react"; import { IQuestionData } from "../types"; import chartImg2 from "../icons/chartImg2.png"; type Props = { question: IQuestionData; }; export const RDate = ({ question }: Props) => { return (
{question.answers.map((answer: any, index: number) => (
{answer}
))}
); };