From 2d5ae9a53905941f7ae0fd76bd9723c0ad3504c0 Mon Sep 17 00:00:00 2001
From: Luis Felipe Risch <lfr20@inf.ufpr.br>
Date: Wed, 30 Sep 2020 12:28:39 -0300
Subject: [PATCH] File that contains the labels of Drawer Tabs

---
 src/Admin/Pages/AdminLabelTabs/LabelTabs.js | 81 +++++++++++++++++++++
 1 file changed, 81 insertions(+)
 create mode 100644 src/Admin/Pages/AdminLabelTabs/LabelTabs.js

diff --git a/src/Admin/Pages/AdminLabelTabs/LabelTabs.js b/src/Admin/Pages/AdminLabelTabs/LabelTabs.js
new file mode 100644
index 00000000..2aa863e4
--- /dev/null
+++ b/src/Admin/Pages/AdminLabelTabs/LabelTabs.js
@@ -0,0 +1,81 @@
+/*Copyright (C) 2019 Centro de Computacao Cientifica e Software Livre
+Departamento de Informatica - Universidade Federal do Parana
+
+This file is part of Plataforma Integrada MEC.
+
+Plataforma Integrada MEC is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Plataforma Integrada MEC is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU Affero General Public License for more details.
+
+You should have received a copy of the GNU Affero General Public License
+along with Plataforma Integrada MEC.  If not, see <http://www.gnu.org/licenses/>.*/
+
+//This file has the labels of the left menu navigation from admin page
+
+const TabsItens = [
+    {
+        label: "Home",
+    },
+    {
+        label: 'Coleções'
+    },
+    {
+        label: "Atividades",
+    },
+    {
+        label: "Dúvidas da comunidade",
+    },
+    {
+        label: "Instituições",
+    },
+    {
+        label: "Linguagens",
+    },
+    {
+        label: "Objetos educacionais",
+    },
+    {
+        label: "Rating",
+    },
+    {
+        label: "Permissões do usuário",
+    },
+    {
+        label: "Variáveis de nota",
+    },
+    {
+        label: "Perguntas curadoria",
+    },
+    {
+        label: "Aprovação de professores",
+    },
+    {
+        label: "Usuários",
+    },
+    {
+        label: "Usuários bloqueados",
+    },
+    {
+        label: "Denúncias",
+    },
+    {
+        label: "Enviar email",
+    },
+    {
+        label: "Métricas",
+    },
+    {
+        label: "Configurações",
+    },
+    {
+        label: "Sair",
+    },
+];
+
+export { TabsItens };
-- 
GitLab