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.
|
|
|
import React, {Component, useContext} from 'react';
|
|
|
|
import {observer} from 'mobx-react';
|
|
|
|
import {Row, Col, Button, Tabs, Table} from 'antd';
|
|
|
|
import {stores_Context} from '../config';
|
|
|
|
import {useNavigate} from "react-router-dom";
|
|
|
|
import {
|
|
|
|
SlackOutlined,
|
|
|
|
SketchOutlined,
|
|
|
|
AntCloudOutlined,
|
|
|
|
RedditOutlined,
|
|
|
|
GithubOutlined
|
|
|
|
} from '@ant-design/icons';
|
|
|
|
|
|
|
|
const Home = () => {
|
|
|
|
|
|
|
|
const navigate = useNavigate();
|
|
|
|
const {auth_store} = useContext(stores_Context);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<SketchOutlined/> <AntCloudOutlined/> <SlackOutlined/> <RedditOutlined/> <GithubOutlined/>
|
|
|
|
<br/>
|
|
|
|
这就是一个主页,什么也没写
|
|
|
|
<br/>
|
|
|
|
<SketchOutlined/> <AntCloudOutlined/> <SlackOutlined/> <RedditOutlined/> <GithubOutlined/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
export default observer(Home);
|