import React from "react"; import { useTranslation } from "react-i18next"; import { FaImage } from "react-icons/fa"; import ImageBoxField from "./ImageBoxField/ImageBoxField"; const AttachmentForm = () => { const [t] = useTranslation(); return (

{t("header.attachment")}

); }; export default AttachmentForm;