add assessment home

This commit is contained in:
2022-10-17 09:50:24 -03:00
parent 4bc00301b4
commit 6732308631
11 changed files with 30 additions and 8 deletions

View File

@@ -3,7 +3,7 @@ import React, { useState } from 'react';
import { useDispatch, useSelector } from "react-redux";
import { useHistory, useLocation } from 'react-router';
import { DashboardRoutePaths, QuestionRoutePaths } from "../../routes";
import { AssessmentRoutePaths, DashboardRoutePaths, QuestionRoutePaths } from "../../routes";
import { RootState } from "../../services/store";
import { turnOff } from "../../services/store/unsavedChanges";
import { Dialog } from '../Dialog';
@@ -49,7 +49,7 @@ export const AppbarTabs = () => {
{
icon: <DocumentIcon className="w-6" />,
tabel: 'Avaliações',
pathname: QuestionRoutePaths.index,
pathname: AssessmentRoutePaths.index,
isCurrent: false,
}
]