index.js
420 Bytes
import React from 'react';
import { formatMessage } from 'umi/locale';
import Link from 'umi/link';
import { Exception } from 'ant-design-pro';
const PAGE_NAME_UPPER_CAMEL_CASE = () => (
<Exception
type="404"
desc={formatMessage({ id: 'BLOCK_BAME.description.404' })}
linkElement={Link}
backText={formatMessage({ id: 'BLOCK_BAME.exception.back' })}
/>
);
export default PAGE_NAME_UPPER_CAMEL_CASE;