FileForm.tsx 344 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
import React from "react";
2
3
4
5
import { FileType } from "../types";

type Props = {
  element: FileType;
Jiwon Yoon's avatar
Jiwon Yoon committed
6
  save: boolean;
7
8
};

Jiwon Yoon's avatar
Jiwon Yoon committed
9
export const FileForm = ({ element, save }: Props) => {
10
  return (
Jiwon Yoon's avatar
Jiwon Yoon committed
11
12
    <div id="content" className="flex mt-4 w-full justify-center">
      <input type="file" className=" w-11/12 h-16" disabled></input>
13
14
15
    </div>
  );
};