QEssay.tsx 291 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
import React from "react";
2
import { IQuestionFormProps } from "../types";
3

4
export const QEssay = ({}: IQuestionFormProps) => {
5
6
7
8
9
10
  return (
    <div id="commentarea" className="flex mt-4 w-full justify-center">
      <input className="border w-11/12 h-16" disabled></input>
    </div>
  );
};