import React, { useState } from "react"; import { EssayType, BasicQuestionType } from "./Question"; type Props = { element: EssayType; questionList: BasicQuestionType[]; }; export const Q_Assay = ({ element, questionList }: Props) => { console.log(questionList); return (

); };