Welcome.tsx 796 B

123456789101112131415161718192021222324252627
  1. import { PageContainer } from '@ant-design/pro-components';
  2. import { Card } from 'antd';
  3. import React from 'react';
  4. import StatisticIndex from '../pages/statistical/index';
  5. /**
  6. * 欢迎首页
  7. * @constructor
  8. */
  9. const Welcome: React.FC = () => {
  10. return (
  11. <PageContainer>
  12. <Card>
  13. <StatisticIndex />
  14. {/*<div style={{ width: '100%' }} className={styles.welcome}>*/}
  15. {/* <img src="/assets/welcome.png" className={styles.img_style} alt="" />*/}
  16. {/* <div className={styles.welcome_text} style={{ marginTop: '10px' }}>*/}
  17. {/* WELCOME*/}
  18. {/* </div>*/}
  19. {/* <div className={styles.welcome_text}>欢迎进入永续绿建管理平台</div>*/}
  20. {/*</div>*/}
  21. </Card>
  22. </PageContainer>
  23. );
  24. };
  25. export default Welcome;