pdf-code-check-failed-notice.tsx 404 B

12345678910111213141516
  1. import { memo } from 'react'
  2. import { useTranslation } from 'react-i18next'
  3. import OLNotification from '@/features/ui/components/ol/ol-notification'
  4. function PdfCodeCheckFailedNotice() {
  5. const { t } = useTranslation()
  6. return (
  7. <OLNotification
  8. type="error"
  9. content={t('code_check_failed_explanation')}
  10. className="m-0"
  11. />
  12. )
  13. }
  14. export default memo(PdfCodeCheckFailedNotice)