FileForm.tsx 367 Bytes
Newer Older
1
2
3
4
5
import React, { useState } from "react";
import { FileType } from "../types";

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

Jiwon Yoon's avatar
Jiwon Yoon committed
9
export const FileForm = ({ element, currentId }: 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>
  );
};