index.tsx 546 B

12345678910111213141516171819202122232425
  1. import css from './index.module.css';
  2. import {Card} from 'antd';
  3. import {FC} from 'react';
  4. const Main: FC = function() {
  5. return (
  6. <section className={css.main}>
  7. <Card>
  8. <section
  9. style={{
  10. width: '100%',
  11. height: '500px',
  12. display: 'flex',
  13. alignItems: 'center',
  14. justifyContent: 'center',
  15. }}
  16. >
  17. <h1 style={{fontSize: '40px'}}>仓储物流管理系统</h1>
  18. </section>
  19. </Card>
  20. </section>
  21. );
  22. };
  23. export default Main;