/**
 * 500.jsx
 *
 * @Author: bjyangxiuwu
 * @Date: 2019/1/08 上午9:52
 */

import React from 'react';
import { Link } from 'react-router-dom';

class ServerError extends React.PureComponent {
    static displayName = 'ServerError';

    static propTypes = {};

    static defaultProps = {};

    constructor(props, context) {
        super(props, context);
        this.state = {};
    }

    render() {
        return (
            <div className="section">
                <h1>500</h1>
                <br/>
                <Link to="/">回到首页</Link>
            </div>
        );
    }
}

export default ServerError;
