// @ts-nocheck /* eslint-disable */ import { Button, Result } from 'antd'; import React from 'react'; import { getLocale } from 'umi'; const defaultLocale = 'en-US'; export const ErrorBoundary = ({ error }: { error: any }) => { console.error(error); const currentLocale = getLocale ? getLocale() : defaultLocale; return ( window.location.reload()}> {currentLocale === defaultLocale ? 'Reload' : '再试一次'} } /> ); };