Skip to content

Commit

Permalink
feat/BibimMandu-IssueTacker#150: 마일스톤 상세 페이지 라우터 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
qkdflrgs committed Aug 10, 2023
1 parent 0f456ec commit db05cdd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion FE/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ function App() {
<Route path="" element={<LoginPage />}></Route>
<Route path="/new" element={<AddIssuePage />}></Route>
<Route path="/labels" element={<LabelsPage />}></Route>
<Route path="/milestones" element={<MilestonesPage />}></Route>
<Route
path="/milestones/:state"
element={<MilestonesPage />}
></Route>
<Route path="/issues/:filter" element={<MainPage />}></Route>
<Route path="/detail/:id" element={<IssueDetail />}></Route>
</Routes>
Expand Down

0 comments on commit db05cdd

Please sign in to comment.