Skip to content

Commit

Permalink
feat :: 라우터 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
육기준 authored Jan 2, 2024
1 parent f92d1a2 commit 2a91768
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/router/Router.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const Router = () => {
return <BrowserRouter>
<Routes>
<Route element={<Layout />}>
<Route path="/" element={_.<HomePage />} />
<Route path="/" element={<_.HomePage />} />
<Route path="/board" element={<_.BoardPage />} />
<Route path="/detail/:id" element={<_.DetailPage />} />
<Route path="/profile" element={<_.MyPage />} />
Expand All @@ -14,7 +14,7 @@ export const Router = () => {
<Route path="/test" element={<_.TestPage />} />
<Route path="/intest" element={<_.InTestPage />} />
</Route>
<Route path="/signUp" element={<SignUp />} />
<Route path="/signUp" element={<_.SignUp />} />
</Routes>
</BrowserRouter >
}

0 comments on commit 2a91768

Please sign in to comment.