EssayForm.tsx 322 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
import React from "react";
2
3
4
5
6
7
8
9
10
11
12
13
14
import { EssayType } from "../types";

type Props = {
  element: EssayType;
};

export const EssayForm = ({ element }: Props) => {
  return (
    <div id="commentarea" className="flex mt-4 w-full justify-center">
      <input className="border w-11/12 h-16" disabled></input>
    </div>
  );
};