| 12345678910111213141516171819202122232425 |
- import css from './index.module.css';
- import {Card} from 'antd';
- import {FC} from 'react';
- const Main: FC = function() {
- return (
- <section className={css.main}>
- <Card>
- <section
- style={{
- width: '100%',
- height: '500px',
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- }}
- >
- <h1 style={{fontSize: '40px'}}>仓储物流管理系统</h1>
- </section>
- </Card>
- </section>
- );
- };
- export default Main;
|