import React, { useState } from "react"; import { EssayType } from "../types"; // import { useQuestion } from "./question.context"; // import { Edit } from "./Edit"; // import { TypeChange } from "./typeDD"; type Props = { element: EssayType; }; export const EssayForm = ({ element }: Props) => { // const { questionListChange } = useQuestion(); return (
); };