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