Przeglądaj źródła

add link of github

visuddhinanda 3 lat temu
rodzic
commit
c5cceb9631
1 zmienionych plików z 12 dodań i 4 usunięć
  1. 12 4
      dashboard/src/components/library/FooterBar.tsx

+ 12 - 4
dashboard/src/components/library/FooterBar.tsx

@@ -1,20 +1,28 @@
 import { Link } from "react-router-dom";
 import { Link } from "react-router-dom";
 import { Layout, Row, Col } from "antd";
 import { Layout, Row, Col } from "antd";
-import { useIntl } from "react-intl";
 import CreateFeedback from "../feedback/CreateFeedback";
 import CreateFeedback from "../feedback/CreateFeedback";
 
 
 const { Footer } = Layout;
 const { Footer } = Layout;
 
 
 const Widget = () => {
 const Widget = () => {
   //Library foot bar
   //Library foot bar
-  const intl = useIntl(); //i18n
   // TODO
   // TODO
   return (
   return (
     <Footer>
     <Footer>
       <Row>
       <Row>
-        <Col span={8}>相关链接</Col>
+        <Col span={8}>
+          <h3>相关链接</h3>
+          <ul>
+            <li>
+              <Link to="www.github.com/iapt-platform/mint" target="_blank">
+                wikipali in github
+              </Link>
+            </li>
+            <li>nissaya project</li>
+          </ul>
+        </Col>
         <Col span={16}>
         <Col span={16}>
-          <div>问题反馈</div>
+          <h3>问题反馈</h3>
           <div>
           <div>
             <CreateFeedback />
             <CreateFeedback />
           </div>
           </div>