import { useTranslation } from 'react-i18next' import { Button, Dropdown } from 'react-bootstrap' import Icon from '../../../shared/components/icon' import ControlledDropdown from '../../../shared/components/controlled-dropdown' import PdfFileList from './pdf-file-list' import { memo } from 'react' import { useCompileContext } from '../../../shared/context/compile-context' function PdfDownloadButton() { const { compiling, pdfDownloadUrl, fileList } = useCompileContext() const { t } = useTranslation() const disabled = compiling || !pdfDownloadUrl return ( ) } export default memo(PdfDownloadButton)