You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dashboard/src/views/Welcome.jsx

22 lines
761 B
React

import { useContext } from 'react';
import { observer } from 'mobx-react';
2 years ago
import { stores_Context, APP_VERSION } from '../config';
import { Table } from 'antd';
import { SlackOutlined, SketchOutlined, AntCloudOutlined, RedditOutlined, GithubOutlined } from '@ant-design/icons';
export default observer((props) => {
// const { } = useContext(stores_Context);
return (
<>
<div>
<SketchOutlined /> <AntCloudOutlined /> <SlackOutlined /> <RedditOutlined /> <GithubOutlined />
<div>欢迎! </div>
<div>
当前版本: v<span>{APP_VERSION}</span>
</div>
<SketchOutlined /> <AntCloudOutlined /> <SlackOutlined /> <RedditOutlined /> <GithubOutlined />
</div>
</>
);
});