import React from 'react';
import { Layout } from 'antd';
import bg from './dashboard.png';

const { Header } = Layout;

const imgStyle = { width: '100%', height: 'auto', margin: 'auto', paddingBottom: '30px' };

export default () => (
  <Layout className="list-layout host-layout common-layout">
    <Header>仪表盘</Header>
    <img src={bg} alt="" style={imgStyle} />
  </Layout>
);
