import React from "react" import { useTranslation } from "react-i18next" import Button from "../../fundamentals/button" import Modal from "../../molecules/modal" type ExportModalProps = { handleClose: () => void onSubmit?: () => void loading: boolean title: string } const ExportModal: React.FC = ({ handleClose, title, loading, onSubmit, }) => { const { t } = useTranslation() return ( {title} {/* TODO: Add filtering
Current filters
You havn’t applied any filtering. Remember that the export list feature in many ways are controlled by how you filter the list overview.
*/}
{t("export-modal-title", "Initialize an export of your data")}
) } export default ExportModal