24 lines
601 B
TypeScript
24 lines
601 B
TypeScript
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 (
|
|
<div className="AttachmentForm">
|
|
<header className="header_form">
|
|
<FaImage />
|
|
<h4>{t("header.attachment")}</h4>
|
|
</header>
|
|
<main className="main_form_body">
|
|
<ImageBoxField name="personal_image" />
|
|
<ImageBoxField name="id_image" />
|
|
</main>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AttachmentForm;
|