/*! * Copyright (c) 2024 PLANKA Software GmbH * Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md */ import React from 'react'; import { useTranslation } from 'react-i18next'; import { Icon, Message } from 'semantic-ui-react'; const FileIsTooBig = React.memo(() => { const [t] = useTranslation(); return ( {t('common.uploadFailedFileIsTooBig')} ); }); export default FileIsTooBig;