404.js 301 Bytes
Newer Older
dengxiaofeng's avatar
dengxiaofeng committed
1 2
import React from 'react';

张烨's avatar
张烨 committed
3
import { Button, Result } from 'antd';
dengxiaofeng's avatar
dengxiaofeng committed
4 5 6 7 8 9 10 11 12

export default () => (
  <Result
    status="404"
    title="404"
    style={{
      background: 'none',
    }}
    subTitle="Sorry, the page you visited does not exist."
张烨's avatar
张烨 committed
13
    extra={<Button type="primary">Back Home</Button>}
dengxiaofeng's avatar
dengxiaofeng committed
14
  />
张烨's avatar
张烨 committed
15
);