Browse Source

Update 404.js (#2577)

pull/2594/head
Jing Ma 8 years ago
committed by 陈帅
parent
commit
184834b3b2
  1. 8
      src/pages/404.js

8
src/pages/404.js

@ -1,7 +1,13 @@
import React from 'react';
import Link from 'umi/link';
import { formatMessage } from "umi/locale";
import Exception from '@/components/Exception';
export default () => (
<Exception type="404" style={{ minHeight: 500, height: '100%' }} linkElement={Link} />
<Exception
type="404"
linkElement={Link}
desc={formatMessage({id: 'app.exception.description.404'})}
backText={formatMessage({id: 'app.exception.back'})}
/>
);

Loading…
Cancel
Save