From 98be17522ef0474a40b134a3ca4e0d2e8096d469 Mon Sep 17 00:00:00 2001 From: dan Date: Wed, 3 Jan 2024 18:36:53 -0500 Subject: feat: stuff changed --- src/App.js | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/App.js') diff --git a/src/App.js b/src/App.js index 28e3a52..bb574c5 100644 --- a/src/App.js +++ b/src/App.js @@ -7,7 +7,9 @@ import { import Login from "./pages/Login"; import Surveys from "./pages/Surveys"; import NewSurvey from "./pages/NewSurvey"; +import Survey from "./pages/Survey"; import SurveyResults from "./pages/SurveyResults"; +import SurveyAnswer from "./pages/SurveyAnswer"; import SurveyAssignees from "./pages/SurveyAssignees"; import Users from "./pages/Users"; import NavBar from "./components/NavBar"; @@ -52,10 +54,18 @@ function routes({ login, logout, isLoggedIn }) { path: "/surveys/new", element: withNavBar(), }, + { + path: "/surveys/:formId", + element: withNavBar(), + }, { path: "/surveys/:surveyId/results", element: withNavBar(), }, + { + path: "/surveys/:surveyId/results/:runId/answer", + element: withNavBar(), + }, { path: "/surveys/:surveyId/assignees", element: withNavBar(), -- cgit v1.2.3