/**
 * 404页面
 * User: bjyangxiuwu
 * Date: 2018/12/17
 * Time: 17:03
 */

import React from 'react';
// import PropTypes from 'prop-types';
// import classNames from 'classnames';
import { Link } from 'react-router-dom';

class NotFound extends React.PureComponent {
    static displayName = 'NotFound';

    static propTypes = {};

    static defaultProps = {};

    constructor(props, context) {
        super(props, context);
        this.state = {};
    }

    render() {
        // const {} = this.props;
        return (
            <div className="section">
                404 <br /> <Link to="/500">点击此处跳转500页面（在侧边栏菜单中不显示）</Link>
            </div>
        );
    }
}

export default NotFound;
