import React, { useContext } from 'react'; import { Size } from '@pdfme-tables/common'; import { I18nContext } from '../contexts'; import { BACKGROUND_COLOR } from '../constants'; import { theme, Result } from 'antd'; const ErrorScreen = ({ size, error }: { size: Size; error: Error }) => { const i18n = useContext(I18nContext); const { token } = theme.useToken(); return (
{error.message}} />
); }; export default ErrorScreen;