import React, { Component } from 'react';
import { Link } from 'react-router';

export default class NotFound extends Component {
  static diaplayName = 'NotFound';

  render() {
    return (
      <div title="404">
        <div style={{ padding: '100px 0px', textAlign: 'center' }}>
          <img
            width={314}
            src="//img.alicdn.com/tps/TB11W.WOXXXXXcbaXXXXXXXXXXX-496-310.png"
          />
          <p style={{ color: '#999', fontSize: '15px' }}>
            我们没有找到您要的页面,点击 <Link to="/">这里</Link>返回首页
          </p>
        </div>
      </div>
    );
  }
}
