Skip to content

Commit

Permalink
feat(Announcement): 어학 공지사항 페이지를 라우팅 경로에 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
pp449 committed Dec 23, 2023
1 parent 4a006e9 commit 0b32985
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/pages/Announcement/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,17 @@ const Announcement = () => {
<AnnounceContainer
title={ANNOUNCEMENT_TITLE.MAROR}
category={ANNOUNCEMENT_CATEGORY.MAJOR}
endPoint={major}
endPoint={'?major=' + major}
/>
}
/>
<Route
path={PATH.LANGUAGE_ANNOUNCEMENT}
element={
<AnnounceContainer
title={ANNOUNCEMENT_TITLE.LANGUAGE}
category={ANNOUNCEMENT_CATEGORY.LANGUAGE}
endPoint={'/language'}
/>
}
/>
Expand Down

0 comments on commit 0b32985

Please sign in to comment.