Skip to content

Commit

Permalink
♻️ GroupJoin/GroupLink 페이지 컴포넌트에 대한 index 파일 추가
Browse files Browse the repository at this point in the history
- import 문 개선
  • Loading branch information
js43o committed Jan 26, 2024
1 parent 2922361 commit fd4cdc0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/frontend/src/hooks/useRouter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ import {
Calendar,
MapLayout,
Groups,
GroupJoinPage,
GroupLinkPage,
ProfilePage,
NotFound,
} from '@/pages';
import { GroupJoinPage } from '@/pages/Group/Join';
import { GroupLinkPage } from '@/pages/Group/Link';

export const useRouter = () =>
createBrowserRouter([
Expand Down
2 changes: 2 additions & 0 deletions app/frontend/src/pages/Group/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from './Join/index';
export * from './Link/index';
1 change: 1 addition & 0 deletions app/frontend/src/pages/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export * from './Calendar';
export * from './Group';
export * from './Groups';
export * from './Main';
export * from './Map';
Expand Down

0 comments on commit fd4cdc0

Please sign in to comment.