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

type Props = {
  element: FileType;
};

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