import React, { useState } from "react"; import { EssayType } from "./CreateSurveyFormPage"; type Props = { element: EssayType; QuestionListChange: (e: React.ChangeEvent) => void; }; export const QEssay = ({ element, QuestionListChange }: Props) => { return (
); };