Commit 184834b3 authored by Jing Ma's avatar Jing Ma Committed by 陈帅

Update 404.js (#2577)

parent 2950e59b
import React from 'react'; import React from 'react';
import Link from 'umi/link'; import Link from 'umi/link';
import { formatMessage } from "umi/locale";
import Exception from '@/components/Exception'; import Exception from '@/components/Exception';
export default () => ( 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'})}
/>
); );
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment