/**
 * 404.jsx
 *
 * @Author: bjyangxiuwu
 * @Date: 2019/1/08 上午9:52
 */

import React from 'react';

class NotFound extends React.PureComponent {
    static displayName = 'NotFound';

    static propTypes = {};

    static defaultProps = {};

    constructor(props, context) {
        super(props, context);
        this.state = {};
    }

    render() {
        return (
            <div className="section">
                <h1>404</h1>
            </div>
        );
    }
}

export default NotFound;
