conf: 调整路由权限
parent
21e70b9dfb
commit
662e5ac2ae
@ -0,0 +1,26 @@
|
||||
import { useContext } from 'react';
|
||||
import { observer } from "mobx-react";
|
||||
import { stores_Context } 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/>
|
||||
<br/>
|
||||
欢迎
|
||||
<br/>
|
||||
<SketchOutlined/> <AntCloudOutlined/> <SlackOutlined/> <RedditOutlined/> <GithubOutlined/>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
});
|
Loading…
Reference in New Issue