Skip to content

Commit

Permalink
Merge pull request #6 from SIAT-Python-Project/feature/user/#2
Browse files Browse the repository at this point in the history
login path change
  • Loading branch information
jang010505 authored Jun 21, 2024
2 parents f7842e6 + 66823bb commit 3e758c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ function App() {
<div>
<BrowserRouter>
<Routes>
<Route path="/" element={<MainPage />}></Route>
<Route path="/sign-up" element={<SignUpPage />}></Route>
<Route path="/sign-in" element={<SingInPage />}></Route>
<Route path="/" element = {<MainPage/>}></Route>
<Route path="/api/sign-up" element = {<SignUpPage/>}></Route>
<Route path="/api/login" element = {<SingInPage/>}></Route>
<Route path='/info/update/:infoId' element={<UpdateInfo />} />
</Routes>
</BrowserRouter>
Expand Down

0 comments on commit 3e758c9

Please sign in to comment.