/**
 * 500 页面
 * User: bjyangxiuwu
 * Date: 2018/12/17
 * Time: 17:03
 */

import React from 'react';
// import PropTypes from 'prop-types';
// import classNames from 'classnames';

class SeverError extends React.PureComponent {
    static displayName = 'SeverError';

    static propTypes = {};

    static defaultProps = {};

    constructor(props, context) {
        super(props, context);
        this.state = {};
    }

    render() {
        // const {} = this.props;
        return <div className="section">500</div>;
    }
}

export default SeverError;
