From bde418ebd4996e96747e50e3133cbeb0c904064a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Geonizeli?= Date: Wed, 12 Oct 2022 22:35:05 +0000 Subject: [PATCH] add avaliations tab item --- app/javascript/components/Appbar/AppbarTabs.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/app/javascript/components/Appbar/AppbarTabs.tsx b/app/javascript/components/Appbar/AppbarTabs.tsx index 5e8f0cc..1a0a6e0 100644 --- a/app/javascript/components/Appbar/AppbarTabs.tsx +++ b/app/javascript/components/Appbar/AppbarTabs.tsx @@ -1,4 +1,4 @@ -import { ChartBarIcon, ClipboardListIcon } from "@heroicons/react/outline"; +import { ChartBarIcon, ClipboardListIcon, DocumentIcon } from "@heroicons/react/outline"; import React, { useState } from 'react'; import { useDispatch, useSelector } from "react-redux"; import { useHistory, useLocation } from 'react-router'; @@ -45,7 +45,14 @@ export const AppbarTabs = () => { tabel: 'Questões', pathname: QuestionRoutePaths.index, isCurrent: location.pathname.includes('question'), - }] + }, + { + icon: , + tabel: 'Avaliações', + pathname: QuestionRoutePaths.index, + isCurrent: false, + } +] return ( <>