import React, { type JSX } from 'react'; import { useTranslation } from 'next-i18next'; // import { toastSuccess, toastError } from '~/client/util/toastr'; type ArchiveFilesTableMenuProps = { fileName: string; onZipFileStatRemove: (fileName: string) => void; }; const ArchiveFilesTableMenu = ( props: ArchiveFilesTableMenuProps, ): JSX.Element => { const { t } = useTranslation(); return (