403.jsx 303 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="403"
    title="403"
    style={{
      background: 'none',
    }}
    subTitle="Sorry, you don't have access to this page."
张烨's avatar
张烨 committed
13
    extra={<Button type="primary">Back to home</Button>}
dengxiaofeng's avatar
dengxiaofeng committed
14
  />
张烨's avatar
张烨 committed
15
);