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

邓晓峰's avatar
邓晓峰 committed
3
import { Result } from 'antd';
dengxiaofeng's avatar
dengxiaofeng committed
4 5 6 7 8 9 10 11 12 13

export default () => (
  <Result
    status="403"
    title="403"
    style={{
      background: 'none',
    }}
    subTitle="Sorry, you don't have access to this page."
    extra={
邓晓峰's avatar
邓晓峰 committed
14
      null
邓晓峰's avatar
邓晓峰 committed
15
      // <Button type="primary">Back to home</Button>
dengxiaofeng's avatar
dengxiaofeng committed
16 17
    }
  />
邓晓峰's avatar
邓晓峰 committed
18
);