Commit 719a7a2b authored by Yoon, Daeki's avatar Yoon, Daeki 😅
Browse files

이름 변경 및 설문 응답 폴더 구조 변경

parent 1865b708
...@@ -3,7 +3,7 @@ import { BrowserRouter, Route, Routes } from "react-router-dom"; ...@@ -3,7 +3,7 @@ import { BrowserRouter, Route, Routes } from "react-router-dom";
import App from "./App"; import App from "./App";
import { Login, SignUp } from "./auth"; import { Login, SignUp } from "./auth";
import { RequireAuth } from "./auth/RequireAuth"; import { RequireAuth } from "./auth/RequireAuth";
import { SurveyForm } from "./commons"; import { AnswerSurveyForm } from "./answers";
import { Home } from "./home"; import { Home } from "./home";
import { Profile } from "./profile"; import { Profile } from "./profile";
import { EditResponseButton } from "./survey"; import { EditResponseButton } from "./survey";
...@@ -21,7 +21,7 @@ export const SurveyRouter = () => { ...@@ -21,7 +21,7 @@ export const SurveyRouter = () => {
<Route path=":surveyId" element={<EditSurvey />} /> <Route path=":surveyId" element={<EditSurvey />} />
<Route path=":surveyId/response" element /> <Route path=":surveyId/response" element />
</Route> </Route>
<Route path="surveys/:surveyId" element={<SurveyForm />} /> <Route path="surveys/:surveyId" element={<AnswerSurveyForm />} />
<Route <Route
path="profile" path="profile"
element={ element={
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment