import React from "react"; import { FileType } from "../types"; type Props = { element: FileType; }; export const AFileForm = ({ element }: Props) => { return (
); };