Skip to content

Commit

Permalink
Merge pull request #123 from GDSC-PKNU-21-22/fix/#122
Browse files Browse the repository at this point in the history
Fix: 누락된 코드 추가
  • Loading branch information
pp449 authored Aug 1, 2023
2 parents 6bb6ed9 + dfc5d80 commit e5f3776
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@ const App = () => {
return (
<Container>
<Header />
<Routes>
<Route path="/" element={<Home />} />
<Route path="/announcement/*" element={<Announcement />} />
<Route path="/my" element={<My />} />
<Route path="/map" element={<Map />} />
<Route path="/major-decision/*" element={<MajorDecision />} />
</Routes>
<Body>
<Routes>
<Route path="/" element={<Home />} />
<Route path="/announcement/*" element={<Announcement />} />
<Route path="/my" element={<My />} />
<Route path="/map" element={<Map />} />
<Route path="/major-decision/*" element={<MajorDecision />} />
</Routes>
</Body>
<FooterTab />
</Container>
);
Expand Down

0 comments on commit e5f3776

Please sign in to comment.