Browse Source

Added tutor insa link in sidebar

keplyx 4 years ago
parent
commit
0a4a3f23f0
1 changed files with 9 additions and 3 deletions
  1. 9
    3
      components/Sidebar.js

+ 9
- 3
components/Sidebar.js View File

@@ -12,8 +12,8 @@ const deviceHeight = Dimensions.get("window").height;
12 12
 const drawerCover = require("../assets/drawer-cover.png");
13 13
 
14 14
 const WIKETUD_LINK = "https://www.etud.insa-toulouse.fr/wiketud";
15
-const Amicale_LINK = "https://www.etud.insa-toulouse.fr/~amicale";
16
-const RU_LINK = "http://m.insa-toulouse.fr/ru.html";
15
+const AMICALE_LINK = "https://www.etud.insa-toulouse.fr/~amicale";
16
+const TUTOR_INSA_LINK = "https://www.etud.insa-toulouse.fr/~tutorinsa/";
17 17
 
18 18
 type Props = {
19 19
     navigation: Object,
@@ -48,7 +48,7 @@ export default class SideBar extends React.Component<Props, State> {
48 48
                 name: "Amicale",
49 49
                 route: "amicale",
50 50
                 icon: "web",
51
-                link: Amicale_LINK
51
+                link: AMICALE_LINK
52 52
             },
53 53
             {
54 54
                 name: "Wiketud",
@@ -57,6 +57,12 @@ export default class SideBar extends React.Component<Props, State> {
57 57
                 link: WIKETUD_LINK
58 58
             },
59 59
             {
60
+                name: "Tutor'INSA",
61
+                route: "tutorinsa",
62
+                icon: "school",
63
+                link: TUTOR_INSA_LINK
64
+            },
65
+            {
60 66
                 name: i18n.t('screens.menuSelf'),
61 67
                 route: "SelfMenuScreen",
62 68
                 icon: "silverware-fork-knife",

Loading…
Cancel
Save