import React from 'react';
import { Layout } from 'antd';
import Empty from '../components/Empty';

const { Content } = Layout;
// <h3>
//   Page <em>{props.location.pathname}</em> Not Found
// </h3>
function OopsMsg() {
  return (
    <div>
      <span style={{ fontSize: '42px' }}> Oops! </span>
      <span> 这里目前什么都没有哦～ </span>
    </div>
  );
}

export default () => (
  <Layout>
    <Content style={{ padding: '50px 30px' }}>
      <Empty msg={<OopsMsg />} />
    </Content>
  </Layout>
);
